whomat(filename)
ce = whomat(filename)
whomat(filename, var1, ..., varN)
ce = whomat(filename, var1, ..., varN)
| Paramètre | Description |
|---|---|
| filename | une chaîne : nom de fichier .mat. |
| var1, ..., varN | une chaîne : noms des variables à inspecter. |
| Paramètre | Description |
|---|---|
| ce | cellule de chaînes contenant les noms des variables. |
whomat liste les variables d'un fichier .mat valide.
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 | version initiale |