<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780</link>
    <title>MATLAB Central Newsreader - Clickable subplots</title>
    <description>Feed for thread: Clickable subplots</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by 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>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Sun, 19 Aug 2007 22:36:32 -0400</pubDate>
      <title>Clickable subplots</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780#388328</link>
      <author>G.A.M. </author>
      <description>Hi, I have a figure with many small subplots (as many as 80&lt;br&gt;
or more). I would like to add functionality that would allow&lt;br&gt;
me to double click a subplot to display a full size plot&lt;br&gt;
with more details. Any suggestions on how to do this in an&lt;br&gt;
m-file?</description>
    </item>
    <item>
      <pubDate>Mon, 20 Aug 2007 15:30:39 -0400</pubDate>
      <title>Re: Clickable subplots</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780#388431</link>
      <author>Titus</author>
      <description>&lt;br&gt;
&quot;G.A.M. &quot; &amp;lt;gam32225@yahoo.co&amp;gt; schrieb im Newsbeitrag &lt;br&gt;
news:faaglg$4k6$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; Hi, I have a figure with many small subplots (as many as 80&lt;br&gt;
&amp;gt; or more). I would like to add functionality that would allow&lt;br&gt;
&amp;gt; me to double click a subplot to display a full size plot&lt;br&gt;
&amp;gt; with more details. Any suggestions on how to do this in an&lt;br&gt;
&amp;gt; m-file?&lt;br&gt;
&lt;br&gt;
Hi,&lt;br&gt;
use the ButtonDownFunction-property of the subplot:&lt;br&gt;
h = subplot(n,m,i);&lt;br&gt;
set(h, 'ButtonDownFcn', @mycallbackfcn)&lt;br&gt;
&lt;br&gt;
and in mycallbackfcn.m:&lt;br&gt;
&lt;br&gt;
function mycallbackfcn(hObject, eventdata)&lt;br&gt;
hFig = get(hObject, 'parent');&lt;br&gt;
if strcmp(get(hFig,'SelectionType'),'open')&lt;br&gt;
&amp;nbsp;&amp;nbsp;% this was a double click, do something&lt;br&gt;
&amp;nbsp;&amp;nbsp;disp('do something')&lt;br&gt;
end&lt;br&gt;
&lt;br&gt;
Hope, this helps,&lt;br&gt;
Titus</description>
    </item>
    <item>
      <pubDate>Mon, 20 Aug 2007 16:47:57 -0400</pubDate>
      <title>Re: Clickable subplots</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780#388453</link>
      <author>G.A.M. </author>
      <description>Hi,&lt;br&gt;
Thanks for your very helpful reply. I appreciate it very&lt;br&gt;
much! I'm running into a few issues implementing it, however.&lt;br&gt;
&lt;br&gt;
The first issue was that setting the callback fcn, as in:&lt;br&gt;
set(h, 'ButtonDownFcn', @mycallbackfcn)&lt;br&gt;
&lt;br&gt;
is somehow undone by calling plot(...) in the next line of&lt;br&gt;
code. I verified by stepping through the code. Before&lt;br&gt;
calling set, ButtonDownFcn is empty as shown here:&lt;br&gt;
&lt;br&gt;
K&amp;gt;&amp;gt; get(hOS, 'ButtonDownFcn')&lt;br&gt;
ans =      ''&lt;br&gt;
&lt;br&gt;
after calling set, it is set as shown here:&lt;br&gt;
&lt;br&gt;
K&amp;gt;&amp;gt; get(hOS, 'ButtonDownFcn')&lt;br&gt;
&lt;br&gt;
ans =     @GenerateFullSizePlotFromSubplot&lt;br&gt;
&lt;br&gt;
then after calling plot, the ButtonDownFcn is unset&lt;br&gt;
automatically:&lt;br&gt;
&lt;br&gt;
K&amp;gt;&amp;gt; get(hOS, 'ButtonDownFcn')&lt;br&gt;
ans =      ''&lt;br&gt;
&lt;br&gt;
I fixed this by reversing the order of the lines - I plot to&lt;br&gt;
the axes first, then set the ButtonDownFcn. However, the&lt;br&gt;
fact that this happens concerns me. It tells me that I don't&lt;br&gt;
really understand something.&lt;br&gt;
&lt;br&gt;
Now I am hitting a few more issues that I have not solved.&lt;br&gt;
&lt;br&gt;
When I call &lt;br&gt;
mydata = get(gca,'UserData');&lt;br&gt;
I get []&lt;br&gt;
However, using the property inspector, I can see that the&lt;br&gt;
UserData exists and is correct. It is a string. And gca&lt;br&gt;
returns a value of 534.0007, so I assume gca is returning a&lt;br&gt;
valid subplot.&lt;br&gt;
&lt;br&gt;
Any idea how I can get the UserData (or any other property)&lt;br&gt;
from the callback function? What should I look for in debugging?&lt;br&gt;
&lt;br&gt;
The other strange thing is that some of my subplots respond&lt;br&gt;
to mouse clicks and some do not. I set ButtonDownFcn on all&lt;br&gt;
of them the same - I do it in a loop. Some subplots seem to&lt;br&gt;
lose the callback and some don't. That's really strange. Any&lt;br&gt;
ideas what I should look for?&lt;br&gt;
&lt;br&gt;
Finally, the following code isn't working for me:&lt;br&gt;
if strcmp(get(hFig,'SelectionType'),'open')&lt;br&gt;
&lt;br&gt;
Even on a double click the comparison fails.&lt;br&gt;
&lt;br&gt;
For testing I am simply responding to a single click, but I&lt;br&gt;
would like to know what the problem is.&lt;br&gt;
Thanks.&lt;br&gt;
&lt;br&gt;
&quot;Titus&quot; &amp;lt;titus.edelhofer@mathworks.de&amp;gt; wrote in message&lt;br&gt;
&amp;lt;facc2p$8ve$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &quot;G.A.M. &quot; &amp;lt;gam32225@yahoo.co&amp;gt; schrieb im Newsbeitrag &lt;br&gt;
&amp;gt; news:faaglg$4k6$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; &amp;gt; Hi, I have a figure with many small subplots (as many as 80&lt;br&gt;
&amp;gt; &amp;gt; or more). I would like to add functionality that would allow&lt;br&gt;
&amp;gt; &amp;gt; me to double click a subplot to display a full size plot&lt;br&gt;
&amp;gt; &amp;gt; with more details. Any suggestions on how to do this in an&lt;br&gt;
&amp;gt; &amp;gt; m-file?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; use the ButtonDownFunction-property of the subplot:&lt;br&gt;
&amp;gt; h = subplot(n,m,i);&lt;br&gt;
&amp;gt; set(h, 'ButtonDownFcn', @mycallbackfcn)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; and in mycallbackfcn.m:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; function mycallbackfcn(hObject, eventdata)&lt;br&gt;
&amp;gt; hFig = get(hObject, 'parent');&lt;br&gt;
&amp;gt; if strcmp(get(hFig,'SelectionType'),'open')&lt;br&gt;
&amp;gt;   % this was a double click, do something&lt;br&gt;
&amp;gt;   disp('do something')&lt;br&gt;
&amp;gt; end&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hope, this helps,&lt;br&gt;
&amp;gt; Titus&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; </description>
    </item>
    <item>
      <pubDate>Mon, 20 Aug 2007 17:24:19 -0400</pubDate>
      <title>Re: Clickable subplots</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780#388460</link>
      <author>Steven Lord</author>
      <description>&lt;br&gt;
&quot;G.A.M. &quot; &amp;lt;x0zero@gmail.com&amp;gt; wrote in message &lt;br&gt;
news:facgjt$6kf$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; Thanks for your very helpful reply. I appreciate it very&lt;br&gt;
&amp;gt; much! I'm running into a few issues implementing it, however.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; The first issue was that setting the callback fcn, as in:&lt;br&gt;
&amp;gt; set(h, 'ButtonDownFcn', @mycallbackfcn)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; is somehow undone by calling plot(...) in the next line of&lt;br&gt;
&amp;gt; code. I verified by stepping through the code. Before&lt;br&gt;
&amp;gt; calling set, ButtonDownFcn is empty as shown here:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; K&amp;gt;&amp;gt; get(hOS, 'ButtonDownFcn')&lt;br&gt;
&amp;gt; ans =      ''&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; after calling set, it is set as shown here:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; K&amp;gt;&amp;gt; get(hOS, 'ButtonDownFcn')&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; ans =     @GenerateFullSizePlotFromSubplot&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; then after calling plot, the ButtonDownFcn is unset&lt;br&gt;
&amp;gt; automatically:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; K&amp;gt;&amp;gt; get(hOS, 'ButtonDownFcn')&lt;br&gt;
&amp;gt; ans =      ''&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I fixed this by reversing the order of the lines - I plot to&lt;br&gt;
&amp;gt; the axes first, then set the ButtonDownFcn. However, the&lt;br&gt;
&amp;gt; fact that this happens concerns me. It tells me that I don't&lt;br&gt;
&amp;gt; really understand something.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/support/solutions/data/1-1B5UM.html?solution=1-1B5UM&quot;&gt;http://www.mathworks.com/support/solutions/data/1-1B5UM.html?solution=1-1B5UM&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
There is one additional workaround you can use instead of the two in that &lt;br&gt;
technical solution:  use the lower-level line plotting function LINE instead &lt;br&gt;
of the higher-level plotting function PLOT.  PLOT calls NEWPLOT; LINE does &lt;br&gt;
not.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; close all&lt;br&gt;
&amp;gt;&amp;gt; set(gca, 'Tag', 'Hello');&lt;br&gt;
&amp;gt;&amp;gt; plot(1:10);&lt;br&gt;
&amp;gt;&amp;gt; get(gca, 'Tag')&lt;br&gt;
ans =&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;''&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; close all&lt;br&gt;
&amp;gt;&amp;gt; set(gca, 'Tag', 'Hello');&lt;br&gt;
&amp;gt;&amp;gt; line(1:10, 1:10);&lt;br&gt;
&amp;gt;&amp;gt; get(gca, 'Tag')&lt;br&gt;
ans =&lt;br&gt;
Hello&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;gt; Now I am hitting a few more issues that I have not solved.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; When I call&lt;br&gt;
&amp;gt; mydata = get(gca,'UserData');&lt;br&gt;
&amp;gt; I get []&lt;br&gt;
&amp;gt; However, using the property inspector, I can see that the&lt;br&gt;
&amp;gt; UserData exists and is correct. It is a string. And gca&lt;br&gt;
&amp;gt; returns a value of 534.0007, so I assume gca is returning a&lt;br&gt;
&amp;gt; valid subplot.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Any idea how I can get the UserData (or any other property)&lt;br&gt;
&amp;gt; from the callback function? What should I look for in debugging?&lt;br&gt;
&lt;br&gt;
Don't use GCA in a callback like this.  GCA could change between when the &lt;br&gt;
callback triggers and when it calls GCA.  [I don't know if that's what's &lt;br&gt;
happening here, but it wouldn't surprise me.]&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
close all&lt;br&gt;
h1 = subplot(2, 1, 1);&lt;br&gt;
set(h1, 'Tag', 'subplot1', 'ButtonDownFcn', 'pause(2); get(gca, ''Tag'')')&lt;br&gt;
h2 = subplot(2, 1, 2);&lt;br&gt;
set(h2, 'Tag', 'subplot2')&lt;br&gt;
% Now click on the first subplot, then immediately click on the second &lt;br&gt;
subplot and note which axes's Tag was displayed.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Instead, use either the handle that MATLAB passes into your ButtonDownFcn or &lt;br&gt;
(if you're using something like the above) use GCBO, which returns the &lt;br&gt;
object whose callback function is executing.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
close all&lt;br&gt;
h1 = subplot(2, 1, 1);&lt;br&gt;
set(h1, 'Tag', 'subplot1', 'ButtonDownFcn', 'pause(2); get(gcbo, ''Tag'')')&lt;br&gt;
h2 = subplot(2, 1, 2);&lt;br&gt;
set(h2, 'Tag', 'subplot2')&lt;br&gt;
% Now click on the first subplot, then immediately click on the second &lt;br&gt;
subplot.&lt;br&gt;
&lt;br&gt;
% or&lt;br&gt;
&lt;br&gt;
close all&lt;br&gt;
h1 = subplot(2, 1, 1);&lt;br&gt;
set(h1, 'Tag', 'subplot_axes1', 'ButtonDownFcn', @(h, eventdata) disp(get(h, &lt;br&gt;
'Tag')))&lt;br&gt;
h2 = subplot(2, 1, 2);&lt;br&gt;
set(h2, 'Tag', 'subplot_axes2', 'ButtonDownFcn', @(h, eventdata) disp(get(h, &lt;br&gt;
'Tag')))&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;gt; The other strange thing is that some of my subplots respond&lt;br&gt;
&amp;gt; to mouse clicks and some do not. I set ButtonDownFcn on all&lt;br&gt;
&amp;gt; of them the same - I do it in a loop. Some subplots seem to&lt;br&gt;
&amp;gt; lose the callback and some don't. That's really strange. Any&lt;br&gt;
&amp;gt; ideas what I should look for?&lt;br&gt;
&lt;br&gt;
Do you plot into some of your subplots and not others?&lt;br&gt;
&lt;br&gt;
&amp;gt; Finally, the following code isn't working for me:&lt;br&gt;
&amp;gt; if strcmp(get(hFig,'SelectionType'),'open')&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Even on a double click the comparison fails.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
close all&lt;br&gt;
set(gca, 'ButtonDownFcn', @(h, eventdata) disp(get(gcbf, 'SelectionType')))&lt;br&gt;
% Now double-click on the axes and see how many lines of text are displayed&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;gt; For testing I am simply responding to a single click, but I&lt;br&gt;
&amp;gt; would like to know what the problem is.&lt;br&gt;
&lt;br&gt;
Take a look at the Interruptible and BusyAction properties of the axes.  You &lt;br&gt;
may want to have your callback function pause for a short time before it &lt;br&gt;
check the figure's SelectionType property, so that it only 'counts' the &lt;br&gt;
double-click not the single-click and then the double-click.&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Steve Lord&lt;br&gt;
slord@mathworks.com </description>
    </item>
    <item>
      <pubDate>Mon, 20 Aug 2007 17:51:23 -0400</pubDate>
      <title>Re: Clickable subplots</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780#388468</link>
      <author>G.A.M. </author>
      <description>Hi Steve,&lt;br&gt;
Thanks for the very useful information. My responses are below.&lt;br&gt;
&lt;br&gt;
&quot;Steven Lord&quot; &amp;lt;slord@mathworks.com&amp;gt; wrote in message     ''&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/support/solutions/data/1-1B5UM.html?solution=1-1B5UM&quot;&gt;http://www.mathworks.com/support/solutions/data/1-1B5UM.html?solution=1-1B5UM&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
Now I do understand that issue. That's a good link. Thanks.&lt;br&gt;
&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; The other strange thing is that some of my subplots respond&lt;br&gt;
&amp;gt; &amp;gt; to mouse clicks and some do not. I set ButtonDownFcn on all&lt;br&gt;
&amp;gt; &amp;gt; of them the same - I do it in a loop. Some subplots seem to&lt;br&gt;
&amp;gt; &amp;gt; lose the callback and some don't. That's really strange. Any&lt;br&gt;
&amp;gt; &amp;gt; ideas what I should look for?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Do you plot into some of your subplots and not others?&lt;br&gt;
&lt;br&gt;
I plot into all of them the same. However, it looks as if&lt;br&gt;
the issue is related to exactly where I click with the&lt;br&gt;
mouse. If I happen to click on a line series (i.e., the plot&lt;br&gt;
object itself), the callback fcn is not called. However, if&lt;br&gt;
I click on other areas (the background, the axes, etc.), the&lt;br&gt;
callback is called. So it looks to me like the callback&lt;br&gt;
associated with the subplot (the axes) does not get called&lt;br&gt;
if the mouse click happens to land on the plot itself.&lt;br&gt;
&lt;br&gt;
What is the solution? Attach the same callback to the plot&lt;br&gt;
and the subplot? I'm guessing there is a more elegant way...&lt;br&gt;
&lt;br&gt;
Thanks for your tips.</description>
    </item>
    <item>
      <pubDate>Mon, 20 Aug 2007 18:05:11 -0400</pubDate>
      <title>Re: Clickable subplots</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780#388470</link>
      <author>Steven Lord</author>
      <description>&lt;br&gt;
&quot;G.A.M. &quot; &amp;lt;x0zero@gmail.com&amp;gt; wrote in message &lt;br&gt;
news:fackar$51d$1@fred.mathworks.com...&lt;br&gt;
&lt;br&gt;
*snip*&lt;br&gt;
&lt;br&gt;
&amp;gt; I plot into all of them the same. However, it looks as if&lt;br&gt;
&amp;gt; the issue is related to exactly where I click with the&lt;br&gt;
&amp;gt; mouse. If I happen to click on a line series (i.e., the plot&lt;br&gt;
&amp;gt; object itself), the callback fcn is not called. However, if&lt;br&gt;
&amp;gt; I click on other areas (the background, the axes, etc.), the&lt;br&gt;
&amp;gt; callback is called. So it looks to me like the callback&lt;br&gt;
&amp;gt; associated with the subplot (the axes) does not get called&lt;br&gt;
&amp;gt; if the mouse click happens to land on the plot itself.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; What is the solution? Attach the same callback to the plot&lt;br&gt;
&amp;gt; and the subplot? I'm guessing there is a more elegant way...&lt;br&gt;
&lt;br&gt;
The easy way to get this to work is to set the HitTest property for your &lt;br&gt;
plot to 'off'.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/support/solutions/data/1-1B03X.html?solution=1-1B03X&quot;&gt;http://www.mathworks.com/support/solutions/data/1-1B03X.html?solution=1-1B03X&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Steve Lord&lt;br&gt;
slord@mathworks.com </description>
    </item>
    <item>
      <pubDate>Tue, 21 Aug 2007 00:20:26 -0400</pubDate>
      <title>Re: Clickable subplots</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154780#388515</link>
      <author>G.A.M. </author>
      <description>Using the tips suggested in this thread I got everything&lt;br&gt;
working. I now have clickable subplots. Thank you.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&quot;Steven Lord&quot; &amp;lt;slord@mathworks.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;facl4n$h1r$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &quot;G.A.M. &quot; &amp;lt;x0zero@gmail.com&amp;gt; wrote in message &lt;br&gt;
&amp;gt; news:fackar$51d$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; *snip*&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I plot into all of them the same. However, it looks as if&lt;br&gt;
&amp;gt; &amp;gt; the issue is related to exactly where I click with the&lt;br&gt;
&amp;gt; &amp;gt; mouse. If I happen to click on a line series (i.e., the plot&lt;br&gt;
&amp;gt; &amp;gt; object itself), the callback fcn is not called. However, if&lt;br&gt;
&amp;gt; &amp;gt; I click on other areas (the background, the axes, etc.), the&lt;br&gt;
&amp;gt; &amp;gt; callback is called. So it looks to me like the callback&lt;br&gt;
&amp;gt; &amp;gt; associated with the subplot (the axes) does not get called&lt;br&gt;
&amp;gt; &amp;gt; if the mouse click happens to land on the plot itself.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; What is the solution? Attach the same callback to the plot&lt;br&gt;
&amp;gt; &amp;gt; and the subplot? I'm guessing there is a more elegant way...&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; The easy way to get this to work is to set the HitTest&lt;br&gt;
property for your &lt;br&gt;
&amp;gt; plot to 'off'.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/support/solutions/data/1-1B03X.html?solution=1-1B03X&quot;&gt;http://www.mathworks.com/support/solutions/data/1-1B03X.html?solution=1-1B03X&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; -- &lt;br&gt;
&amp;gt; Steve Lord&lt;br&gt;
&amp;gt; slord@mathworks.com &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; </description>
    </item>
  </channel>
</rss>

