Main Content

unloadlibrary

Unload shared C library from memory

Description

example

unloadlibrarylibnameunloads librarylibnamefrom memory.

Examples

collapse all

Add theshrlibexamples folder to the path.

addpath(fullfile(matlabroot,'extern','examples','shrlib'))

Load the library, if it is not already loaded.

if~libisloaded('shrlibsample') loadlibrary('shrlibsample')end

When finished, unload the library to free memory.

unloadlibraryshrlibsample

Input Arguments

collapse all

Name of shared library, specified as a character vector. Do not include the path or file extension inlibname.

If you callloadlibraryusing thealiasoption, then you must use the alias name for thelibnameargument.

Data Types:char

Limitations

  • Use with libraries that are loaded using theloadlibraryfunction.

Tips

  • To unload a MEX file, use theclearfunction.

Version History

Introduced before R2006a