I have many files with text:
LON LAT DEPTH C
9.0928 9.0928 91. .22215180E+00
I using dlmread function:
data = dlmread(fname, ' ', 1, 0);
But I get error:
Badly formed format string.
How can I ignore header text and get counts via dlmread in this case?
Thank you in advance
data = dlmread(fname, '', 1, 0)to treat multiple spaces as a single delimiter - Luis Mendo