Periodically fill scatter3

1 次查看(过去 30 天)
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?

采纳的回答

Karim
Karim 2022-11-11
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by