dataload

Purpose

Loads matrices, N-dimensional arrays, strings and string arrays from a disk file.

Note

This function is deprecated, use loadd() instead.

Format

y = dataload(filename)
Parameters:

filename (string) – name of data file.

Returns:

y (matrix or array or string or string array) – data retrieved from the file.

Examples

y = dataload("myfile.fmt");

Remarks

The proper extension must be included in the file name. Valid extensions are as follows:

.fmt

matrix or array file

.fst

string or string array file

See also

Functions load, datasave()