I have a text file which consists:
// MATLAB to process this file
ModelName : Matlab1
PerturbationId : 0
X1X2_001 : 0.270971584968118
X1X2_002 : 0.55555
OBJECTF : ?
NumberOfRuns : 25
SimulationId : 0
What I want to do is to get 0.270971584968118 and 0.55555 out of it, the important thing is that the file is not the same after each run, I mean the name of X1X2 may change (but there is always 001 and 002 at the end). also the values may change (0.270971584968118 and 0.55555). I used textscan but since the file has not specific format (values are not separated by tab, and they are not tabular) it was not useful.
Thanks