Matlab/MatlabIntro

From mn/geo/geoit
Revision as of 16:12, 30 January 2015 by Basal@uio.no (talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
  • Squared brackets concatenate strings:
 This works also for other matrices
 To add a path and a filename, for instance, use

 ::

 a = ['pathto/' 'myfile'];


  • Use *textread* to read in ASCII files
 *'headerlines'* skips lines in the beginning

The format string tells which kind of variable to read.

 ::

[a b c] = textread( file, '%5n %3f', 'headerlines', 2);
 An empty format string reads the whole file
 ::

[a] = textread( file, , 'headerlines', 2);