I have multiple text file, each is a result of a simulation. The content of the file is as follow:
Parameter_1 = value
Parameter_2 = value
.....
Test 1
Min: value
Max: value
Average: value
Test 2
Min: value
Max: value
Average: value
Each file contains the same type of parameters with different values, and of course the tests values are different as well.
I need to be able to import this data to Matlab. What I want to do in Matlab is to be able to create charts of parameters (x-axis) and test results. For example, a chart of Test 1 Min values when Parameter_1 changes means selecting n files where only Parameter_1 differs and compare the Test 1 Min results.
Here's my question: how should I organize that data in my text file to make it easy to import to Matlab? I'm new to Matlab and so I'm don't know what's the best way.
Any ideas that can help me get started would be great. Thanks!
Parameter_Ns? Do they all have the same number ofTests? Do all tests have just 3 valuesMin,Max,Average? - slayton