필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Can i make 3d plot other than surf plot from these three values??? and how???

조회 수: 1 (최근 30일)
ash
ash 2018년 6월 24일
마감: MATLAB Answer Bot 2021년 8월 20일
x=[0.2 0.2 0.5 0.5 0.8 0.9 ]; y=[0.8 0.9 0.8 0.9 0.9 0.5]; z=[0.9329 0.7530 0.9241 0.7058 1.0344 1.1110];

답변 (1개)

Star Strider
Star Strider 2018년 6월 24일
This combines a line plot (with plot3) and a stem plot (using stem3):
figure
plot3(x, y, z)
hold on
stem3(x, y, z)
hold off
grid on

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by