Azzera filtri
Azzera filtri

For loop to plot numbered double arrays

1 visualizzazione (ultimi 30 giorni)
Felix Schuermann
Felix Schuermann il 17 Mar 2018
Commentato: Stephen23 il 20 Mar 2018
I loaded a file wich contains a lot of double arrays. The arrays are named like this array1, array2, array3 and so on. The arrays contain int values wich I'd like to plot (first column vs. second column). How do you do that with a for loop?
  1 Commento
Stephen23
Stephen23 il 20 Mar 2018
"The arrays are named like this array1, array2, array3 and so on. .... How do you do that with a for loop?"
The best solution to this problem is to avoid this situation entirely. Dynamically accessing variable names is one way that beginners force themselves into writing slow, complex, buggy, hard to debug code. Luckily it is also trivially easy to avoid this situation, by simply loading the data into one variable. Venkata Siva Krishna Madala's answer shows you how simple this is, without magically accessing variable names.
If you want to learn why dynamically accessing variable names is a bad way to write code then read this page and all of its linked pages:

Accedi per commentare.

Risposte (1)

Venkata Siva Krishna Madala
Hello Felix,
Since you have not given a sample file I assume the data to be in a MAT file called "sample.mat". It can contain any number of n x 2 arrays.
s=load('sample.mat');
s=struct2cell(s);
for i=1:size(s,1)
figure(i)
plot(s{i}(:,2),s{i}(:,1));
end
You can similary load data using xlsread function for Excel files and readtabel for text files and so on. For further information please visit https://www.mathworks.com/help/matlab/standard-file-formats.html
Regards,
Krishna Madala

Categorie

Scopri di più su Data Type Identification 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!

Translated by