separating parts of loaded data
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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?
0 Commenti
Risposte (1)
Walter Roberson
il 4 Ago 2016
It is not recommended to use individual variables for that purpose.
http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F http://matlab.wikia.com/wiki/FAQ#How_can_I_create_variables_A1.2C_A2.2C....2CA10_in_a_loop.3F
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.
0 Commenti
Vedere anche
Categorie
Scopri di più su Structures in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!