I have a string with six values:
datastring = A, 12229, 1480413555450, 139,1473389, 012,3362331, -001,7571955
where the first one is a letter and the rest are float number, I would like to get the numeric values using:
data=textscan(datastring,'%s %f %f %f %f %f','Delimiter',',');
The problem is, as you see, that both the decimals, and the different values, are separate by ,
, so do you have any idea how I could do that?
PS: I also tried with delimiter being ', '
, that is with an space, but isnt working neither.