I need to read test.TXT file(tab delimited) into MATLAB.
TXT file have form:
Datum Time Data1 Data2 Data3 Data4 Data5
06/28/2012 09:27,3 1,931764 -0,008698 4,151306 33,865424 -44,923096
06/28/2012 09:27,3 1,931764 -0,003662 4,154358 33,865424 -44,831543
06/28/2012 09:27,4 1,928712 -0,001526 4,168701 33,866102 -45,472412
.....................................................
After that I need to plot these data (for example time vs. data1; time vs. data2..)
What is the easiest way to open and read test.txt file so I can then plot my data (insert all data to workspace..). I tried to import data, but then MATLAB import data as one column. :/
Thanks
EDIT
I just noticed that I copy wrong format of time into first post :S
Datum Time Data1 Data2 Data3 Data4 Data5
06/28/2012 17:09:27,3 1,931764 -0,008698 4,151306 33,865424 -44,923096
06/28/2012 17:09:27,3 1,931764 -0,003662 4,154358 33,865424 -44,831543
06/28/2012 17:09:27,4 1,928712 -0,001526 4,168701 33,866102 -45,472412
.....................................................
17:09:27,4 -> 17(hour), 09 (minutes), 27 (seconds), 4(miliseconds)
Here is now big problem with , and .