whomat(filename)
ce = whomat(filename)
whomat(filename, var1, ..., varN)
ce = whomat(filename, var1, ..., varN)
| Parameter | Description |
|---|---|
| filename | a string: .mat filename. |
| var1, ..., varN | string: Names of variables to inspect. |
| Parameter | Description |
|---|---|
| ce | cell of strings with variables names. |
whomat lists variables in an valid .mat file.
A = ones(3, 4);
B = 'Nelson';
C = sparse(true);
D = sparse(3i);
savemat([tempdir(), 'example_whomat-v7.3.mat'], 'A', 'B', 'C', 'D', '-v7.3')
whomat([tempdir(), 'example_whomat-v7.3.mat'])
ce = whomat([tempdir(), 'example_whomat-v7.3.mat'])
| Version | Description |
|---|---|
| 1.0.0 | initial version |