I know that to use the load command I need to write:
blah = load('test.txt')
My problem is I need to skip the 1st few lines of my test file, i.e. the file is of the form
872
30
FR
(below here is data that needs to be put in matrix)
0000.0 0000.0 0000.0 etc...
0001.0 0000.0 0000.0 etc...
0002.0 0000.0 0000.0 etc...
So how do I do that?
I also have another file that looks like:
1 (abcdef)
2 (fedcba)
3 (edfbac)
on to 800 or so.
Is it possible load this kind of file in to a matrix? (N.b. I need to be able to look in the matrix to find the certain letter combinations, and then load a file the corresponds to the number associated with the letters).