Create a 3D plot
조회 수: 3 (최근 30일)
이전 댓글 표시
I want to create a 3D plot with same axis label same below without having any blue dots( only 3D plots empty )

댓글 수: 0
채택된 답변
Walter Roberson
2022년 4월 8일
axis equal
xlim([-1, 1]); ylim([-1, 1]); zlim([-1, 1]);
T = -1:.5:1;
xticks(T); yticks(T); zticks(T);
grid on
view(3)
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
