two plots in same GUI
    2 views (last 30 days)
  
       Show older comments
    
 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.
0 Comments
Accepted Answer
  Walter Roberson
      
      
 on 25 Dec 2012
        4 Comments
  Walter Roberson
      
      
 on 25 Dec 2012
				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)
More Answers (0)
See Also
Categories
				Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
