I am trying to plot empty 3d plot with axis -20:5:20 and plot relevant data later. how can I plot such a 3D plot. please help

 채택된 답변

Walter Roberson
Walter Roberson 2017년 9월 4일

3 개 추천

ax = axes();
xlim(ax, [-20 20]);
ylim(ax, [-20 20]);
zlim(ax, [-20 20]);
view(ax, 3)
hold(ax, 'on')

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Scatter Plots에 대해 자세히 알아보기

질문:

2017년 9월 3일

댓글:

2017년 9월 4일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by