필터 지우기
필터 지우기

How to obtain empty 3d plot

조회 수: 32 (최근 30일)
kavinda hw
kavinda hw 2017년 9월 3일
댓글: kavinda hw 2017년 9월 4일
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일
ax = axes();
xlim(ax, [-20 20]);
ylim(ax, [-20 20]);
zlim(ax, [-20 20]);
view(ax, 3)
hold(ax, 'on')
  댓글 수: 1
kavinda hw
kavinda hw 2017년 9월 4일
Thank you for response

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by