From 16cba161ac1e460e0c1457b80a420656f6cefecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Mon, 3 Dec 2012 15:47:53 +0100 Subject: [PATCH] Fixed bug (removed first row of data). --- matlab/load_csv_file_data.m | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/matlab/load_csv_file_data.m b/matlab/load_csv_file_data.m index a648c966d..e10dd7402 100644 --- a/matlab/load_csv_file_data.m +++ b/matlab/load_csv_file_data.m @@ -186,4 +186,7 @@ for linea = 1+withnames:ndx data(linea,i-withtime) = str2double(linee(B(i):C(i))); end end -end \ No newline at end of file +end + +% Remove first line if withnames +data = data(1+withnames:ndx,:); \ No newline at end of file