home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / GENERAL.DI$ / LOAD.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  814 b   |  19 lines

  1. %LOAD    Retrieve variables from disk.
  2. %    LOAD fname  retrieves the variables from the MAT-file 'fname.mat'.
  3. %    LOAD, by itself, loads from the file named 'matlab.mat'.
  4. %    LOAD xxx.yyy  reads the ASCII file xxx.yyy, which must contain a
  5. %    rectangular array of numeric data, arranged in m lines with n values
  6. %    in each line.  The result is an m-by-n matrix named xxx.
  7. %
  8. %    To load an ASCII file that does not have a filename extension, use
  9. %    LOAD fname -ascii. Otherwise MATLAB adds the extension '.mat' and
  10. %    tries to load it as a MAT-file. To load a MAT-file that does NOT
  11. %    have a '.mat' extension, use LOAD fname.ext -mat.
  12. %
  13. %       If fname is "stdio", LOAD reads from standard input.
  14. %
  15. %     See also SAVE, SPCONVERT, FSCANF, FPRINTF.
  16.  
  17. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  18. %    Built-in function.
  19.