Fixed bug (removed first row of data).

time-shift
Stéphane Adjemian (Charybdis) 2012-12-03 15:47:53 +01:00
parent 7f10bccf4a
commit 16cba161ac
1 changed files with 4 additions and 1 deletions

View File

@ -186,4 +186,7 @@ for linea = 1+withnames:ndx
data(linea,i-withtime) = str2double(linee(B(i):C(i)));
end
end
end
end
% Remove first line if withnames
data = data(1+withnames:ndx,:);