MATLAB: Manipulate matrix dimension (ignoring lines)

mm

I have number of matrices sized (203*12),however Matlab doesn't read the first two lines because they are texts. Therefore, I want command to ignore these two lines for all the number of matrices resulting new matrices (201*12) in dimension.
thanks

Best Answer

Use the textscan (link) function.
Define: 'HeaderLines',2 in the name-value pair arguments.