<?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: Do you dock figure windows? What does your desktop look like?</title>
	<atom:link href="http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/</link>
	<description>Mike works on the MATLAB Desktop team</description>
	<lastBuildDate>Tue, 14 Feb 2012 21:36:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-8158</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 26 Oct 2011 12:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-8158</guid>
		<description>@jarrad,

I&#039;m not sure what you&#039;re looking for here, but try the command &lt;tt&gt;figure(N)&lt;/tt&gt;, where &lt;tt&gt;N&lt;/tt&gt; is the figure handle, (you can use &lt;tt&gt;gcf&lt;/tt&gt; for the &quot;current&quot; figure&quot;).</description>
		<content:encoded><![CDATA[<p>@jarrad,</p>
<p>I&#8217;m not sure what you&#8217;re looking for here, but try the command <tt>figure(N)</tt>, where <tt>N</tt> is the figure handle, (you can use <tt>gcf</tt> for the &#8220;current&#8221; figure&#8221;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jarrad</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-8156</link>
		<dc:creator>jarrad</dc:creator>
		<pubDate>Wed, 26 Oct 2011 11:14:04 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-8156</guid>
		<description>Hi

I am currently using the line below
set(0,&#039;DefaultFigureWindowStyle&#039;,&#039;docked&#039;)
in to automatically dock the figure i create.

the problem i am having is that i want it to select the figure automatically so the user can see it without having to manually click on it. is this possible?

also it creates a warning for the menu that i am using, can this be avoided?
mode = menu(&#039;Sample?&#039;,&#039;Answer 1&#039;,&#039;Answer 2&#039;);

Thanks</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I am currently using the line below<br />
set(0,&#8217;DefaultFigureWindowStyle&#8217;,'docked&#8217;)<br />
in to automatically dock the figure i create.</p>
<p>the problem i am having is that i want it to select the figure automatically so the user can see it without having to manually click on it. is this possible?</p>
<p>also it creates a warning for the menu that i am using, can this be avoided?<br />
mode = menu(&#8216;Sample?&#8217;,'Answer 1&#8242;,&#8217;Answer 2&#8242;);</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-8092</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 20 Sep 2011 12:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-8092</guid>
		<description>@Tobias 

The warning is due to your initial magnification setting, which is not usable with a docked figure as docked figures have a fixed size in the desktop. In other words, Matlab can&#039;t resize the figure to match your magnification option.
To solve this, you can change the default magnification to &quot;Fit&quot; in the Matlab Preferences/Image Processing under Initial Magnification. (Alternately, you can use the command 

&lt;pre&gt;
iptsetpref(&#039;ImshowInitialMagnification&#039;, &#039;fit&#039;)
&lt;/pre&gt;

Otherwise, you can set the initial magnification option each time you use imshow as in :

&lt;pre&gt;
imshow( , &#039;InitialMagnification&#039;, &#039;fit&#039;)
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@Tobias </p>
<p>The warning is due to your initial magnification setting, which is not usable with a docked figure as docked figures have a fixed size in the desktop. In other words, Matlab can&#8217;t resize the figure to match your magnification option.<br />
To solve this, you can change the default magnification to &#8220;Fit&#8221; in the Matlab Preferences/Image Processing under Initial Magnification. (Alternately, you can use the command </p>
<pre>
iptsetpref('ImshowInitialMagnification', 'fit')
</pre>
<p>Otherwise, you can set the initial magnification option each time you use imshow as in :</p>
<pre>
imshow( , 'InitialMagnification', 'fit')
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7832</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Fri, 17 Jun 2011 11:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7832</guid>
		<description>I use the commands:
 
set(0,&#039;DefaultFigureWindowStyle&#039;,&#039;docked&#039;); and
set(0,&#039;DefaultFigureWindowStyle&#039;,&#039;normal&#039;);

But how can I get rid of the warning: &quot;The initial magnification of the image is set to &#039;fit&#039; in a docked figure.&quot; ??

I don&#039;t want to just suppress the warning.</description>
		<content:encoded><![CDATA[<p>I use the commands:</p>
<p>set(0,&#8217;DefaultFigureWindowStyle&#8217;,'docked&#8217;); and<br />
set(0,&#8217;DefaultFigureWindowStyle&#8217;,'normal&#8217;);</p>
<p>But how can I get rid of the warning: &#8220;The initial magnification of the image is set to &#8216;fit&#8217; in a docked figure.&#8221; ??</p>
<p>I don&#8217;t want to just suppress the warning.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7128</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Sat, 19 Jun 2010 10:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7128</guid>
		<description>Hey, I want to dock the figure windows by programming till i am asking the user for inputs. After all the inputs are accepted i want that that the docked figure window should be undocked or the figure should get cleared by programming,
please help.</description>
		<content:encoded><![CDATA[<p>Hey, I want to dock the figure windows by programming till i am asking the user for inputs. After all the inputs are accepted i want that that the docked figure window should be undocked or the figure should get cleared by programming,<br />
please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yanting</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7043</link>
		<dc:creator>yanting</dc:creator>
		<pubDate>Mon, 24 May 2010 14:54:11 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7043</guid>
		<description>Dear Mr Altman
Thank you very much for your reply and the setFigDockGroup file, it really helps! i&#039;m be waiting for a future Matlab release for panel docking, your teams are really great teams! thanks again.</description>
		<content:encoded><![CDATA[<p>Dear Mr Altman<br />
Thank you very much for your reply and the setFigDockGroup file, it really helps! i&#8217;m be waiting for a future Matlab release for panel docking, your teams are really great teams! thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yair Altman</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7042</link>
		<dc:creator>Yair Altman</dc:creator>
		<pubDate>Mon, 24 May 2010 14:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7042</guid>
		<description>@Yanting - you can only dock figures into a group container window - you cannot dock into another figure window in the current Matlab release.

My setFigDockGroup utility (http://www.mathworks.com/matlabcentral/fileexchange/16650-setfigdockgroup ) enables docking to a group container or to a figure button (minimized), but not to a figure panel as I assume you requested. We need to wait for a future Matlab release for panel docking; in the meantime use setFigDockGroup.

-Yair</description>
		<content:encoded><![CDATA[<p>@Yanting &#8211; you can only dock figures into a group container window &#8211; you cannot dock into another figure window in the current Matlab release.</p>
<p>My setFigDockGroup utility (<a href="http://www.mathworks.com/matlabcentral/fileexchange/16650-setfigdockgroup" rel="nofollow">http://www.mathworks.com/matlabcentral/fileexchange/16650-setfigdockgroup</a> ) enables docking to a group container or to a figure button (minimized), but not to a figure panel as I assume you requested. We need to wait for a future Matlab release for panel docking; in the meantime use setFigDockGroup.</p>
<p>-Yair</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yanting</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7041</link>
		<dc:creator>yanting</dc:creator>
		<pubDate>Sun, 23 May 2010 12:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-7041</guid>
		<description>I have the same question as Per, i created a lots of GUIs, i want some figures can be docked in the main figure, not in the desktop. How could i do? I searched all over the internet but didnt get replies. Can u help me? thanks a lot!</description>
		<content:encoded><![CDATA[<p>I have the same question as Per, i created a lots of GUIs, i want some figures can be docked in the main figure, not in the desktop. How could i do? I searched all over the internet but didnt get replies. Can u help me? thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-6311</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Thu, 25 Jun 2009 12:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-6311</guid>
		<description>Hi Per,

Thanks for the request and use case. We&#039;ll keep it in mind.

-Ken</description>
		<content:encoded><![CDATA[<p>Hi Per,</p>
<p>Thanks for the request and use case. We&#8217;ll keep it in mind.</p>
<p>-Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Per</title>
		<link>http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-6309</link>
		<dc:creator>Per</dc:creator>
		<pubDate>Wed, 24 Jun 2009 19:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/05/18/do-you-dock-figure-windows-what-does-your-desktop-look-like/#comment-6309</guid>
		<description>I never dock windows in the desktop. However, I develop large and complex GUIs and one docking feature I would definitely use, if it was available, was to dock figures inside other figures. For instance, I have one GUI that generates a lot of subplots. It would be useful to have those subplots docked inside my main GUI (not all the time, of course, some users may want to blow up the figures by undocking and maximising). Perhaps something the Matlab Dev team can think about implementing...</description>
		<content:encoded><![CDATA[<p>I never dock windows in the desktop. However, I develop large and complex GUIs and one docking feature I would definitely use, if it was available, was to dock figures inside other figures. For instance, I have one GUI that generates a lot of subplots. It would be useful to have those subplots docked inside my main GUI (not all the time, of course, some users may want to blow up the figures by undocking and maximising). Perhaps something the Matlab Dev team can think about implementing&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

