Periodically fill scatter3

1 回表示 (過去 30 日間)
Sandi Homolak
Sandi Homolak 2022 年 11 月 11 日
回答済み: Karim 2022 年 11 月 11 日
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 Center および File Exchange2-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