I have the text file that contains measurement data, the header is not that important so I used this to remove the first 25 lines
% Skip the first 25 lines
for i=1:25
fgetl(inputfile);
end
Then I used delimiter in order to get the data
delimiter = '';
values = textscan(inputfile, '%s', 'delimiter', delimiter);
I am trying to convert cell that consists of 1000 char as in the following. Here what I got
'2014_11_03_17-19-49 000 430114 516672 960.91 26.2'
'2014_11_03_17-19-49 001 430112 516656 960.91 26.2'
'2014_11_03_17-19-49 002 430112 516656 960.91 26.2'
'2014_11_03_17-19-49 003 430112 516656 960.91 26.2'
I am trying to convert cell that consists of 1000 char as in the previous I am concerning about (960.91 and 26.2) values only.
I tried to convert it to matrix but i got
this error Cannot support cell arrays containing cell arrays or objects.
Any idea how to just got those values into matrix to plot them.