two plots in same GUI

조회 수: 9 (최근 30일)
Lalit Patil
Lalit Patil 2012년 12월 25일
a = [2 3 7];
plot3(a(1),a(2),a(3),'r.')
a = [6 3 4];
plot3(a(1),a(2),a(3),'r.')
I have to plot this both 3D plots in different figures in same GUI.
so, below each plot3 commant what line i have to write to do this..
I understand that something like
set(handles.axes1)
and
set(handles.axes2)
may be, but give me an exact command.

채택된 답변

Walter Roberson
Walter Roberson 2012년 12월 25일
  댓글 수: 4
Lalit Patil
Lalit Patil 2012년 12월 25일
Yes, what you given works correctly for two plots on same axes.. But, i mean to ask is on same GUI means on two different axes.. Which i think requires use of handle..
Walter Roberson
Walter Roberson 2012년 12월 25일
Then just follow the instructions from the link I gave, to parent the plot3() against the appropriate axes.
a = [2 3 7];
plot3(FirstAxesHandle, a(1), a(2), a(3), 'r.')
or
plot3(a(1), a(2), a(3), 'r.', 'Parent', FirstAxesHandle)

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

추가 답변 (0개)

카테고리

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