필터 지우기
필터 지우기

Help with GUI and plot3 plotting

조회 수: 3 (최근 30일)
Edgar Gonzalez
Edgar Gonzalez 2018년 11월 5일
답변: Jan 2018년 11월 6일
How do I make 3d plots using a GUI? using axes(f) is only creating a 2d plot. I need to plot x, y, and z
f = figure;
myaxes = axes(f);
myaxes.Units = 'pixels';
myaxes.Position = [100 120 325 280];
I attached my code if anyone wants to take a closer look at the rest of it

답변 (1개)

Jan
Jan 2018년 11월 6일
axes does not create a "plot" at all, but only an axes object. If you draw some 3D data in it, you can set the view to 3D:
view(3)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by