Mystery solved! There was a stray "hold off" earlier in the code that didn't affect any figures except for this one. Why it didn't affect the other figures is equally mysterious to me, but I'm glad it works now!
Using "hold all" and "hold on" for a 3D scatterplot
조회 수: 35 (최근 30일)
이전 댓글 표시
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!
댓글 수: 0
채택된 답변
Yasmeen
2014년 1월 15일
댓글 수: 1
Walter Roberson
2014년 1월 15일
"hold off" without an axes specification only applies to the "current axes" of the time.
추가 답변 (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')
참고 항목
카테고리
Help Center 및 File Exchange에서 Scatter Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!