External Interfaces Reference Previous page   Next Page
libfunctions

Return information on functions in external library

Syntax

Description

m = libfunctions('libname') returns the names of all functions defined in the external shared library, libname, that has been loaded into MATLAB with the loadlibrary function. The return value, m, is a cell array of strings.

If you used an alias when initially loading the library, then you must use that alias for the libname argument.

m = libfunctions('libname', '-full') returns a full description of the functions in the library, including function signatures. This includes duplicate function names with different signatures. The return value, m, is a cell array of strings.

libfunctions libname -full is the command format for this function.

Examples

List the functions in the MATLAB libmx library:

To list the functions along with their signatures, use the -full switch with libfunctions:

See Also

loadlibrary, libfunctionsview, libpointer, libstruct, calllib, libisloaded, unloadlibrary


Previous page  calllib libfunctionsview Next page

© 1994-2005 The MathWorks, Inc.