|
Contents | Previous | Next | Subchapters |
| Syntax |
mfread(file, varName)
|
| See Also | mfvars |
The file file must only contain numeric-valued matrices. In particular
the mfread function does not support loading MAT-Files that contain
sparse matrices, cell arrays or structures.
x = [ 1 2 3 ]
save tst.mat
MATLAB will create the file tst.mat which contains one variable x.
If you continue the example by entering
mfread("tst.mat","x")
at the O-Matrix prompt, O-Matrix will respond
[ 1 , 2 , 3 ]