Holding selected iterations for a plot (but not all)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I am creating a plot within a loop and holding all calculations at present with 'hold on' . I would like to only hold selected iterations of my loop in order to make my plot clearer. i.e. if I am running my calculations for 1:100years I might select to plot 10, 25, 50, 75, 100 years.
Many thanks, Alex
0 comentarios
Respuesta aceptada
Sean de Wolski
el 15 de En. de 2013
Editada: Sean de Wolski
el 15 de En. de 2013
for ii = 1:100
if ismember(ii,[10 25 50 75 100]);
hold on;
plot stuff;
else
hold off;
end
end
2 comentarios
Sean de Wolski
el 15 de En. de 2013
You could just use plottools:
>>plottools on
To do it programatically you would need to store the line handles and then tool around with them.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!