Hello,
I am trying to use the textscan command to work a csv file we generate on a test stand.
First I have 115 strings as headers, for this I thought of:
C_text = textscan(fid, ‘%s’, 115, ‘delimiter’, ‘,’);
I need to ignore/erase the first two. I find it unpractical to write the 113 %s and...