Difference between revisions of "Matlab/MatlabIntro"

From mn/geo/geoit
Jump to: navigation, search
 
Line 7: Line 7:
 
   ::
 
   ::
 
   
 
   
  a = ['pathto/' 'myfile'];
+
  a = ['pathto/' 'myfile'];
  
  
Line 26: Line 26:
 
   
 
   
 
  [a] = textread( file, '', 'headerlines', 2);''
 
  [a] = textread( file, '', 'headerlines', 2);''
 +
 +
[[Category:Tools]][[Category:Software]][[Category:Matlab]]

Latest revision as of 17:12, 30 January 2015

  • 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);