<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Advanced MATLAB: Subplots</title>
	<atom:link href="http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/</link>
	<description>&#60;a href=&#34;http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1093599&#38;objectType=author&#34;&#62;Brett&#60;/a&#62; &#38; &#60;a href=&#34;http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1094142&#38;objectType=author&#34;&#62;Jiro&#60;/a&#62; share favorite user-contributed submissions from the File Exchange.</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:12:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13571</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Thu, 20 May 2010 13:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13571</guid>
		<description>@Fabian

Do you mean there would an axis within an axis, sort of like picture in picture on a television?

When you do subplot, each can be of a different size:

&lt;pre class=&quot;code&quot;&gt;

subplot(2,1,1); 
subplot(2,2,3);
subplot(2,2,4);

&lt;/pre&gt;

If you use subplot and they overlay each other, as a feature the old one will be deleted.  The axis command with position property does not though.</description>
		<content:encoded><![CDATA[<p>@Fabian</p>
<p>Do you mean there would an axis within an axis, sort of like picture in picture on a television?</p>
<p>When you do subplot, each can be of a different size:</p>
<pre class="code">

subplot(2,1,1);
subplot(2,2,3);
subplot(2,2,4);
</pre>
<p>If you use subplot and they overlay each other, as a feature the old one will be deleted.  The axis command with position property does not though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fabian</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13567</link>
		<dc:creator>fabian</dc:creator>
		<pubDate>Wed, 19 May 2010 23:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13567</guid>
		<description>hi doug,

is it possible to create subplots within a subplot?
as an example, this is what i mean:

&lt;pre&gt;
for i=1:25
    subplot(5,5,i)   %this would define the &quot;big&quot; plot
   
    subplot(2,1,1)  % this would be a subplot within the bigger subplot
    imagesc(x(i))
    subplot(2,1,2)
    imagesc(y(i)) 
end
&lt;/pre&gt;

each subplot-subplot would consists of two heat maps (image function). if that is not possible, is there a way to code an offset in an imagesc plot (i.e. rows separated from each other)?

thanks</description>
		<content:encoded><![CDATA[<p>hi doug,</p>
<p>is it possible to create subplots within a subplot?<br />
as an example, this is what i mean:</p>
<pre>
for i=1:25
    subplot(5,5,i)   %this would define the "big" plot

    subplot(2,1,1)  % this would be a subplot within the bigger subplot
    imagesc(x(i))
    subplot(2,1,2)
    imagesc(y(i))
end
</pre>
<p>each subplot-subplot would consists of two heat maps (image function). if that is not possible, is there a way to code an offset in an imagesc plot (i.e. rows separated from each other)?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13484</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Wed, 24 Mar 2010 20:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13484</guid>
		<description>@Don,

You can reparent the axes that have the plots.  The axes have a property, &#039;parent&#039;.  set that property to the new figure and then change the position to whatever you want.

Doug</description>
		<content:encoded><![CDATA[<p>@Don,</p>
<p>You can reparent the axes that have the plots.  The axes have a property, &#8216;parent&#8217;.  set that property to the new figure and then change the position to whatever you want.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13481</link>
		<dc:creator>Don</dc:creator>
		<pubDate>Tue, 23 Mar 2010 18:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13481</guid>
		<description>Can anyone tell me how to create a subplot of 4-6 plots using pre-existing figure? I have the figures in my current directory ready to go but I can&#039;t get them (copy, import???) into a subplot so they are all together. Any help would be great!! Thank you

Don</description>
		<content:encoded><![CDATA[<p>Can anyone tell me how to create a subplot of 4-6 plots using pre-existing figure? I have the figures in my current directory ready to go but I can&#8217;t get them (copy, import???) into a subplot so they are all together. Any help would be great!! Thank you</p>
<p>Don</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashmish</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13266</link>
		<dc:creator>Rashmish</dc:creator>
		<pubDate>Wed, 14 Oct 2009 04:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13266</guid>
		<description>I finished my work by the manual bull-work, but it wd still be helpful to know if there is any way at all. I am solving a BVP; I don&#039;t know if your comments on stiffness would still help. Do you have some other suggestions about my problem?

Thanks</description>
		<content:encoded><![CDATA[<p>I finished my work by the manual bull-work, but it wd still be helpful to know if there is any way at all. I am solving a BVP; I don&#8217;t know if your comments on stiffness would still help. Do you have some other suggestions about my problem?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve L</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13168</link>
		<dc:creator>Steve L</dc:creator>
		<pubDate>Thu, 28 May 2009 16:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13168</guid>
		<description>Rashmish,

There&#039;s no &quot;timeout&quot; capability for the ODE solvers.  However, it sounds like the stiffness of your ODEs may depend on the parameters.  Cleve wrote a column on ODEs and stiffness here:

http://www.mathworks.com/company/newsletters/news_notes/clevescorner/may03_cleve.html

You should try switching your program to use a stiffer solver to try to reduce the amount of time it takes to solve the ODE when it&#039;s stiff.  There&#039;s a table in the function reference page for the ODE solvers that describes which solvers are stiff solvers and which aren&#039;t.

http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode113.html?BB=1

If you&#039;re currently using ODE45, try ODE15S or ODE23S.</description>
		<content:encoded><![CDATA[<p>Rashmish,</p>
<p>There&#8217;s no &#8220;timeout&#8221; capability for the ODE solvers.  However, it sounds like the stiffness of your ODEs may depend on the parameters.  Cleve wrote a column on ODEs and stiffness here:</p>
<p><a href="http://www.mathworks.com/company/newsletters/news_notes/clevescorner/may03_cleve.html" rel="nofollow">http://www.mathworks.com/company/newsletters/news_notes/clevescorner/may03_cleve.html</a></p>
<p>You should try switching your program to use a stiffer solver to try to reduce the amount of time it takes to solve the ODE when it&#8217;s stiff.  There&#8217;s a table in the function reference page for the ODE solvers that describes which solvers are stiff solvers and which aren&#8217;t.</p>
<p><a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode113.html?BB=1" rel="nofollow">http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode113.html?BB=1</a></p>
<p>If you&#8217;re currently using ODE45, try ODE15S or ODE23S.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashmish</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13167</link>
		<dc:creator>Rashmish</dc:creator>
		<pubDate>Wed, 27 May 2009 06:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13167</guid>
		<description>Hi Doug,

I have a problem in Matlab, and I hope you can help me with it. I am solving a Differential Equation in Matlab using Matlab&#039;s own functions, for different values of some parameters. For some values of the parameter, it takes too long and I stop the program by a Ctrl-C manually, and then change the parameter. 
Is there a way to automate this? i.e., the program should itself figure out that it took more than say some specific amount of time and so it should move to the next parameter.
I hope you got the question.
Your comments would be greatly appreciated !
Thanks in advance.

Rashmish</description>
		<content:encoded><![CDATA[<p>Hi Doug,</p>
<p>I have a problem in Matlab, and I hope you can help me with it. I am solving a Differential Equation in Matlab using Matlab&#8217;s own functions, for different values of some parameters. For some values of the parameter, it takes too long and I stop the program by a Ctrl-C manually, and then change the parameter.<br />
Is there a way to automate this? i.e., the program should itself figure out that it took more than say some specific amount of time and so it should move to the next parameter.<br />
I hope you got the question.<br />
Your comments would be greatly appreciated !<br />
Thanks in advance.</p>
<p>Rashmish</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13163</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Mon, 18 May 2009 14:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13163</guid>
		<description>S.G.  

I am not sure what you are talking about.  It is much better for us to be able to help if you can show the shortest code snippet that will reproduce the behavior.

Thanks,
Doug</description>
		<content:encoded><![CDATA[<p>S.G.  </p>
<p>I am not sure what you are talking about.  It is much better for us to be able to help if you can show the shortest code snippet that will reproduce the behavior.</p>
<p>Thanks,<br />
Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S. G. Poss</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13159</link>
		<dc:creator>S. G. Poss</dc:creator>
		<pubDate>Sat, 16 May 2009 07:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-13159</guid>
		<description>With this nice demo, I now know what my problem is (something is overlaping), causing the first title not to be displayed and all titles moved up one histogram, with the last without a title.

The question is:  how do you solve this problem?

I&#039;ve shortened the titles as much as possible, but to no avail?

Suggestions?

The property section of the subplots is not thorough in the documentation and I note that the relative order of property statements can also produce bilwildering results.

Looks like an area that needs some work or at least more documentation to allow workers to work around such problems.

Thank  you.</description>
		<content:encoded><![CDATA[<p>With this nice demo, I now know what my problem is (something is overlaping), causing the first title not to be displayed and all titles moved up one histogram, with the last without a title.</p>
<p>The question is:  how do you solve this problem?</p>
<p>I&#8217;ve shortened the titles as much as possible, but to no avail?</p>
<p>Suggestions?</p>
<p>The property section of the subplots is not thorough in the documentation and I note that the relative order of property statements can also produce bilwildering results.</p>
<p>Looks like an area that needs some work or at least more documentation to allow workers to work around such problems.</p>
<p>Thank  you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-12414</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Tue, 12 Aug 2008 15:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/03/03/advanced-matlab-subplots/#comment-12414</guid>
		<description>jitendra,

I am not sure I understand your question.  Please contact support for help.

Doug</description>
		<content:encoded><![CDATA[<p>jitendra,</p>
<p>I am not sure I understand your question.  Please contact support for help.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
</channel>
</rss>

