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!