I try to load this .csv:
Time Column01 Column02 Column03
11.03.2004 09:17:02 236.81 237.31 236.45
11.03.2004 09:17:05 236.6 237.06 236.18
11.03.2004 09:17:08 236.67 237.16 236.28
11.03.2004 09:17:12 236.83 237.24 236.41
11.03.2004 09:17:15 233.84 234.2 233.4
...
using:
b=csvimport('u1.csv','columns',{'Time'});
c=csvimport('u1.csv','columns',{'Column03'});
first work, but second no. Anybody know why? I have this error:
Error using csvimport (line 200) Cannot locate column header 'Column03' in the file 'u1.csv'. Column header names are case sensitive.
Error in TSFP (line 4) c=csvimport('u1.csv','columns',{'Column03'});
Here is description about this function.