<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/153870</link>
    <title>MATLAB Central Newsreader - Using multiple displays</title>
    <description>Feed for thread: Using multiple displays</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 02 Aug 2007 19:55:03 -0400</pubDate>
      <title>Using multiple displays</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/153870#386067</link>
      <author> Jomar Bueyes</author>
      <description>Dear Matlab-ers,&lt;br&gt;
&lt;br&gt;
Is there a way to have Matlab display figures on a screen other than&lt;br&gt;
the main display and/or to let Matlab know that there are two screens?&lt;br&gt;
I am currently using two displays on a laptop and the second display&lt;br&gt;
is much larger, so I'd like the figures to show in that display. The&lt;br&gt;
only way I've been able to do it is to move the figures by hand to the&lt;br&gt;
second display, the next time the Matlab script is run, the figures&lt;br&gt;
are already open and they are refreshed on the second monitor.&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
Jomar&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 02 Aug 2007 20:18:18 -0400</pubDate>
      <title>Re: Using multiple displays</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/153870#386072</link>
      <author>roberson@ibd.nrc-cnrc.gc.ca (Walter Roberson)</author>
      <description>In article &amp;lt;1186084503.195534.135860@x35g2000prf.googlegroups.com&amp;gt;,&lt;br&gt;
Jomar Bueyes  &amp;lt;jomarbueyes@hotmail.com&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&amp;gt;Is there a way to have Matlab display figures on a screen other than&lt;br&gt;
&amp;gt;the main display and/or to let Matlab know that there are two screens?&lt;br&gt;
&amp;gt;I am currently using two displays on a laptop and the second display&lt;br&gt;
&amp;gt;is much larger, so I'd like the figures to show in that display. The&lt;br&gt;
&amp;gt;only way I've been able to do it is to move the figures by hand to the&lt;br&gt;
&amp;gt;second display, the next time the Matlab script is run, the figures&lt;br&gt;
&amp;gt;are already open and they are refreshed on the second monitor.&lt;br&gt;
&lt;br&gt;
After you move one of the figures by hand, get() the Position&lt;br&gt;
property of the moved figure and see if it gives you anything&lt;br&gt;
useful. Create a second figure and set it's Position to the&lt;br&gt;
same as the first figure and see if it gets moved to the second screen.&lt;br&gt;
&lt;br&gt;
Also, check what you get back for  get(0,'ScreenSize')&lt;br&gt;
-- &lt;br&gt;
&amp;nbsp;&amp;nbsp;There are some ideas so wrong that only a very intelligent person&lt;br&gt;
&amp;nbsp;&amp;nbsp;could believe in them.                              -- George Orwell&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 02 Aug 2007 20:47:55 -0400</pubDate>
      <title>Re: Using multiple displays</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/153870#386080</link>
      <author> Jomar Bueyes</author>
      <description>On Aug 2, 3:18 pm, rober...@ibd.nrc-cnrc.gc.ca (Walter Roberson)&lt;br&gt;
wrote:&lt;br&gt;
&amp;gt; In article &amp;lt;1186084503.195534.135...@x35g2000prf.googlegroups.com&amp;gt;,&lt;br&gt;
&amp;gt; Jomar Bueyes  &amp;lt;jomarbue...@hotmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;Is there a way to have Matlab display figures on a screen other than&lt;br&gt;
&amp;gt; &amp;gt;the main display and/or to let Matlab know that there are two screens?&lt;br&gt;
&amp;gt; &amp;gt;I am currently using two displays on a laptop and the second display&lt;br&gt;
&amp;gt; &amp;gt;is much larger, so I'd like the figures to show in that display. The&lt;br&gt;
&amp;gt; &amp;gt;only way I've been able to do it is to move the figures by hand to the&lt;br&gt;
&amp;gt; &amp;gt;second display, the next time the Matlab script is run, the figures&lt;br&gt;
&amp;gt; &amp;gt;are already open and they are refreshed on the second monitor.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; After you move one of the figures by hand, get() the Position&lt;br&gt;
&amp;gt; property of the moved figure and see if it gives you anything&lt;br&gt;
&amp;gt; useful. Create a second figure and set it's Position to the&lt;br&gt;
&amp;gt; same as the first figure and see if it gets moved to the second screen.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Also, check what you get back for  get(0,'ScreenSize')&lt;br&gt;
&amp;gt; --&lt;br&gt;
&amp;gt;   There are some ideas so wrong that only a very intelligent person&lt;br&gt;
&amp;gt;   could believe in them.                              -- George Orwell&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Hi George,&lt;br&gt;
&lt;br&gt;
Thank you for your response.  The get(0, 'screensize') gives the width&lt;br&gt;
of the two monitors added and the height of the largest one.  With&lt;br&gt;
Figure 1 filling out the 2nd monitor, get(1, 'position') gives the&lt;br&gt;
horizontal position as one pixel more than the 1st monitor size. I'm&lt;br&gt;
not sure how the vertical position relates to the size of the&lt;br&gt;
monitors. I guess I could use this information to programatically set&lt;br&gt;
the position of the figures on the 2nd monitor. It would be&lt;br&gt;
cumbersome, but it would work.&lt;br&gt;
&lt;br&gt;
BTW. I did not mention before. I'm using Matlab 7.4 under Mac OS 10.4.&lt;br&gt;
&lt;br&gt;
Thanks again&lt;br&gt;
&lt;br&gt;
Jomar.&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 02 Aug 2007 22:27:52 -0400</pubDate>
      <title>Re: Using multiple displays</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/153870#386098</link>
      <author>us</author>
      <description>Jomar Bueyes:&lt;br&gt;
&amp;lt;SNIP from &amp;lt;walter&amp;gt; to &amp;lt;george&amp;gt;...&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; &amp;lt;walter&amp;gt;'s stuff... ending with a quote...&lt;br&gt;
&amp;gt;&amp;gt; There are some ideas so wrong that only a very &lt;br&gt;
intelligent person could believe in them -- George Orwell&lt;br&gt;
&lt;br&gt;
&amp;gt; Hi George...&lt;br&gt;
&lt;br&gt;
now this is truly &amp;lt;orwellian&amp;gt;...&lt;br&gt;
us&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
