Main Content

libfunctionsview

Display shared C library function signatures in window

Description

example

libfunctionsviewlibnamedisplays information about functions in C librarylibnamein a new window.

Examples

collapse all

ifnot(libisloaded('shrlibsample')) addpath(fullfile(matlabroot,'extern','examples','shrlib')) loadlibrary('shrlibsample')endlibfunctionsviewshrlibsample

MATLAB®creates a new window displaying function signatures.

When finished, unload the library.

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.

Introduced before R2006a