Tagged: ascii

Saving your Matlab sessions

Often one wants to save the data or variables to another occasion. Maybe one wants to save the whole Matlab session. This can be done. Commands are put in a m-file but data or...

type

type List M-file. type foo.bar lists the ascii file called ‘foo.bar’. type foo lists the ascii file called ‘foo.m’. If files called foo and foo.m both exist, then type foo lists the file ‘foo’,...

save

SAVE Save workspace variables to disk. SAVE FILENAME saves all workspace variables to the binary “MAT-file” named FILENAME.mat. The data may be retrieved with LOAD. If FILENAME has no extension, .mat is assumed. SAVE,...