Clear Filters
Clear Filters

separating parts of loaded data

2 views (last 30 days)
Alison
Alison on 3 Aug 2016
Answered: Walter Roberson on 4 Aug 2016
I have loaded in data files which are doubles of variable size and each have an identifier xma567, xma568 etc. The size is either 1028x2 or 1028xn, with n being greater than 2. I would like to separate out the 1028xn files and add an offset to produce stacked plots. Any suggestions?

Answers (1)

Walter Roberson
Walter Roberson on 4 Aug 2016
It is not recommended to use individual variables for that purpose.
After you load the data from any one file, you can use size() to check the number of columns, and add it to a cell array of data if it is one of the ones you want to keep. After you have loaded them all you can use the cell array to produce an appropriate plot.

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!