| MATLAB Runtime Server | ![]() |
Syntax
M = inmem; [M,mexfiles] = inmem; [M,mexfiles,jclasses] = 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,mexfiles] = inmem
returns also a cell array, mexfiles, containing the names of the MEX-files that are currently loaded.
[M,mexfiles,jclasses] = inmem
returns also a cell array, jclasses, containing the names of the Java classes that are currently loaded.
Example
rehash toolboxreset % Refresh cache
sqrtm([1 0;0 1]);
M = inmem
M =
'rsf2csf'
'sqrtm'
These are the M-files that were required to run sqrtm.
See Also
| dirlist | isruntime | ![]() |