How to visualize al the values inside the array and make split them into two sections?
1 次查看(过去 30 天)
显示 更早的评论
采纳的回答
darova
2020-2-24
Just use logical indexing
ix = val > 2;
scatter3(x(ix),y(ix),z(ix),10,'r')
hold on
scatter3(x(~ix),y(~ix),z(~ix),10,'r')
hold off
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!