Main Content

libfunctionsview

Display shared C library function signatures in window

Description

example

libfunctionsview libname displays information about functions in C library libname in a new window.

Examples

collapse all

if not(libisloaded('shrlibsample'))
    addpath(fullfile(matlabroot,'extern','examples','shrlib'))
    loadlibrary('shrlibsample')
end
libfunctionsview shrlibsample

MATLAB® creates a new window displaying function signatures.

When finished, unload the library.

unloadlibrary shrlibsample

Input Arguments

collapse all

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

If you call loadlibrary using the alias option, then you must use the alias name for the libname argument.

Data Types: char

Limitations

  • Use with libraries that are loaded using the loadlibrary function.

Version History

Introduced before R2006a