3D scatter plot scroll through Z axis
7 次查看(过去 30 天)
显示 更早的评论
Hi,
I am new in matlab. I have a 3D scatter plot and I would like to interactively choose to display only one Z position at the time or a selection of Z positions.
Anyone has an idea how to do it?
Thanks a lot!
0 个评论
回答(1 个)
KSSV
2018-10-31
N = 100 ;
x = rand(N,1) ;
y = rand(N,1) ;
z = rand(N,1) ;
figure
scatter(x,y,10,z,'filled')
title('all points')
figure
scatter(x(N),y(N),10,z(N),'filled')
title('last point')
figure
idx = z<=0.5 ;
scatter(x(idx),y(idx),10,z(idx),'filled')
title('points for which z < = 0.5')
2 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!