Using "hold all" and "hold on" for a 3D scatterplot
古いコメントを表示
I am making a large number of figures proceeded by a for loop. Every iteration of the for loop adds a plot layer on top of each figure.
Using "hold all" and calling the figure axes works for all of these scatterplots except for one, which is a 3D scatterplot (made using scatter3). This figure displays only the information from the last iteration.
Is there a reason why scatter3 wouldn't have the same hold properties as scatter, and if so, how can I make the plots hold? Thanks!
採用された回答
その他の回答 (1 件)
Walter Roberson
2014 年 1 月 14 日
If you are using
scatter2(...)
hold on
scatter3(...)
then the 2D view from the scatter2() is held, so the scatter3() that goes on top of it appears to give a 2D result. If you rotate the view after the scatter3() then you can see the points in their proper respective positions.
scatter(rand(1,10),rand(1,10))
hold on
scatter3(rand(1,10),rand(1,10),rand(1,10))
Now click on the rotate tool in the toolbar and rotate out of plane; the blue 2D points will show up all at z = 0 as expected.
2 件のコメント
Walter Roberson
2014 年 1 月 15 日
The obvious supposition would be that you do not have "hold on" applied on axis a14.
hold(a14, 'on')
カテゴリ
ヘルプ センター および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!