Load Matlab .mat data into workspace
Syntax |
Description |
---|---|
matlabload("filename"); |
Load to the workspace the data of the specified .mat file. |
Examples
This is a simple example that shows how to load to workspace from a .mat data file.
#this file has variables data1, data2, data3 matlabload("myData.mat"); ?workspace; matrices: data1 data2 data3
See Also
List of commands , matlabput , matlabsavelegacy , matlabsave ,