- Save the all data points in cell array { }
- Once the plots done and exited from for loop
- Plot any random cell elements from saved cell array.
Taking one figure out of a thousand figures
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
SNM Nima
el 11 de Dic. de 2022
Comentada: SNM Nima
el 11 de Dic. de 2022
I have a for loop in my code and this loop repeats a thousand times and each time gives a figure with a plot.
Is there a way to take one figure from the thousand drawn figures and put it back on another plot after the loop is finished?
0 comentarios
Respuesta aceptada
KALYAN ACHARJYA
el 11 de Dic. de 2022
You can do that in multiple ways, easiest way
for i=1...
plot_data{i}=
end
plot(plot_data{randi(length(plot_data))});
HTH
Más respuestas (0)
Ver también
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!