load (MATLAB Function Reference)
math.jhu.edu › ~shiffman › 370The load and save commands retrieve and store MATLAB variables on disk. load by itself, loads all the variables saved in the file 'matlab.mat'. load filename retrieves the variables from 'filename.mat' given a full pathname or a MATLABPATH relative partial pathname . load (filename) loads a file whose name is stored in filename. The statements:
Loading Data into MATLAB - Computer Action Team
web.cecs.pdx.edu › ~gerry › MATLABThe MATLAB load Command. There is more than one way to read data into MATLAB from a file. The simplest, though least flexible, procedure is to use the load command to read the entire contents of the file in a single step. The load command requires that the data in the file be organized into a rectangular array. No column titles are permitted.
load (MATLAB Functions)
matlab.izmiran.ru › help › techdocClear the workspace and load it from the file mydata.dat. If the filename has an extension other than .mat, MATLAB assumes that it is ASCII: clear load mydata.dat MATLAB loads all data from the ASCII file, merges it into a single matrix, and assigns the matrix to a variable named after the filename:
load (MATLAB Functions)
matlab.izmiran.ru/help/techdoc/ref/load.htmlload loads all the variables from the MAT-file matlab.mat, if it exists, and returns an error if it doesn't exist. load ('filename') loads all the variables from filename given a full pathname or a MATLABPATH relative partial pathname. If filename has no extension, load looks for a file named filename.mat and treats it as a binary MAT-file.