In MATLAB, I have following output of data from a script:
A1 = [1 2;3 4]
A2 = [2 2; 4 5]
A3 = [3 5; 7 8]
I need to create a for loop to step through the each variable and plot. Something like:
for i = 1:3
plot(A(i))
end
So A1 will generate a plot. A2 will generate a plot. And A3 will generate a plot.
Thanks