MATLAB Function Reference | ![]() ![]() |
Syntax
M = inmem [M,X] = inmem [M,X,J] = inmem
Description
M = inmem
returns a cell array of strings containing the names of the M-files that are currently loaded.
[M,X] = inmem
returns an additional cell array, X
, containing the names of the MEX-files that are currently loaded.
[M,X,J] = inmem
also returns a cell array, J
, containing the names of the Java classes that are currently loaded.
Examples
This example lists the M-files that are required to run erf
.
clear all; % Clear the workspace erf(0.5); M = inmem M = 'repmat' 'erfcore' 'erf'
See Also
![]() | inline | inpolygon | ![]() |