Borrar filtros
Borrar filtros

Analyze a variable number of datas

3 visualizaciones (últimos 30 días)
Peter
Peter el 11 de Nov. de 2015
Comentada: Thorsten el 11 de Nov. de 2015
Dear all, I have a changing number of data to be analyzed. How can I do it the smart way without an if condition (copy and paste with ascending numbers) and without the "eval" instruction which I used to far. Simple example plotting two waves (with one if condition). How should I write the code to be flexible to plot 1, 2 or three waves, depending on the result (size(a,1)) I get? Looking forward to your advice. Thanks a lot!
t = 0:0.1:2*pi;
a = [sin(t); cos(t)];
figure
if size(a,1)==2
subplot(2,1,1)
plot(a(1,:))
subplot(2,1,2)
plot(a(2,:))
end

Respuestas (1)

Thorsten
Thorsten el 11 de Nov. de 2015
Editada: Thorsten el 11 de Nov. de 2015
N = size(a,1)
for i=1:N
subplot(1,N,i), plot(a(i,:))
end
  2 comentarios
Peter
Peter el 11 de Nov. de 2015
Yes, thanks - I see, my example was to simple. Indeed, this is the solution for the subplot, but I do have some uicontrol elements and variable names as well. This is what puzzles me, because I do not get along with the arrays in this case...
Thorsten
Thorsten el 11 de Nov. de 2015
Please provide some example of your uicontrol elements and variable names and the code you have so far.

Iniciar sesión para comentar.

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by