From: Ahmad Siddiqi on 18 May 2010 14:52 Hi, I am trying to put 8 seperate plots (abxes) on one figure. I am currently just using the function subplot(2, 4, 8) to display the 8 plots evenly spaced out on two rows , but the plots are too spaced out and I wanted to be able to push them closer together. Is there any way to do this? Btw, I've looked over the axes function and I couldn't get it to accomplish the task. Any help would be greatly appreciated.
From: Ahmad Siddiqi on 19 May 2010 13:05 Does anybody know how? "Ahmad Siddiqi" <clickster100(a)yahoo.com> wrote in message <hsunkk$78n$1(a)fred.mathworks.com>... > Hi, > > I am trying to put 8 seperate plots (abxes) on one figure. I am currently just using the function subplot(2, 4, 8) to display the 8 plots evenly spaced out on two rows , but the plots are too spaced out and I wanted to be able to push them closer together. Is there any way to do this? Btw, I've looked over the axes function and I couldn't get it to accomplish the task. > > Any help would be greatly appreciated.
From: Steven Lord on 19 May 2010 13:23 "Ahmad Siddiqi" <clickster100(a)yahoo.com> wrote in message news:ht15og$1vd$1(a)fred.mathworks.com... > Does anybody know how? > > "Ahmad Siddiqi" <clickster100(a)yahoo.com> wrote in message > <hsunkk$78n$1(a)fred.mathworks.com>... >> Hi, >> >> I am trying to put 8 seperate plots (abxes) on one figure. I am currently >> just using the function subplot(2, 4, 8) to display the 8 plots evenly >> spaced out on two rows , but the plots are too spaced out and I wanted to >> be able to push them closer together. Is there any way to do this? Btw, >> I've looked over the axes function and I couldn't get it to accomplish >> the task. >> >> Any help would be greatly appreciated. SUBPLOT tries to choose appropriate values for the Position of the axes. If you want to modify those positions, change the Position property of the axes using the handles that you received as output when you called SUBPLOT. You will need to figure out what values to use based on how you want the layout to look. -- Steve Lord slord(a)mathworks.com comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ To contact Technical Support use the Contact Us link on http://www.mathworks.com
|
Pages: 1 Prev: Regarding user defined zooming Next: Regarding user defined zooming |