Periodically fill scatter3

1 visualizzazione (ultimi 30 giorni)
Sandi Homolak
Sandi Homolak il 11 Nov 2022
Risposto: Karim il 11 Nov 2022
I have a matrix that changes with every iteration of code and want to make a scatter3 plot from it that fills the plot in every itteration. how do I make it do that instead of overwriting the last scatter3 plot?
So the Matrix is 20x3, so in first iteration there needs to be 20 dots, second iteration 20 more so 40 overall and so on.
Also why does my scatter show up only after I stop the code from running? How to display it during code run?

Risposta accettata

Karim
Karim il 11 Nov 2022
you can use the 'hold on' command to preserve the figure and add information to it, see below for an example
% create an empty figure
figure
% enable to plot multiple data
hold on
% start a loop...
for i = 1:5
% create a new dummy matrix
MyMatrix = rand(20,3) * 10;
% plot the points
scatter3(MyMatrix(:,1),MyMatrix(:,2),MyMatrix(:,3),'filled')
end
% stop the data gathering in the figure
hold off
% create a legend
legend("Iteration"+(1:5))
view(3)
axis equal
grid on

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Tag

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by