| MATLAB Function Reference | Search  Help Desk |
| inmem | Examples See Also |
Syntax
M = inmem [M,X] = inmem
Description
M = inmem
returns a cell array of strings containing the names of the M-files that are in the P-code buffer.
[M,X] = inmem
returns an additional cell array, X, containing the names of the MEX-files that have been loaded.
Examples
This example lists the M-files that are required to runerf.
clear all; % clear the workspace
erf(0.5);
M = inmem
M =
'repmat'
'erfcore'
'erf'
See Also
clear