<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660</link>
    <title>MATLAB Central Newsreader - how to insert textbox and write text in a figure by code (not manually)</title>
    <description>Feed for thread: how to insert textbox and write text in a figure by code (not manually)</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>Sun, 19 Aug 2007 14:54:42 -0400</pubDate>
      <title>Re: how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#388303</link>
      <author>Scott Frasso</author>
      <description>Jeff,&lt;br&gt;
&lt;br&gt;
&amp;lt;how to set the background color of the textbox to be&lt;br&gt;
transparent as if there is no box frame, but still with&lt;br&gt;
strings.&amp;gt;&lt;br&gt;
&lt;br&gt;
You can set the background color of the Text Box to the same color as the &lt;br&gt;
Figure window by getting the figure windows "Color" value and applying it to &lt;br&gt;
the "BackgroundColor" of the Text Box.&lt;br&gt;
&lt;br&gt;
% Get the Color of the figure window&lt;br&gt;
colorOfFigureWindow = get(mFigure,'Color');&lt;br&gt;
&lt;br&gt;
%Set the BackgroundColor of the text box&lt;br&gt;
set(mTextBox,'BackgroundColor',colorOfFigureWindow)&lt;br&gt;
&lt;br&gt;
-Scott&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
"James Anderson" &amp;lt;janderson_net@yahoo.com&amp;gt; wrote in message &lt;br&gt;
news:fa23eo$rtk$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; Scott,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks for your reply, it works! One additional question is&lt;br&gt;
&amp;gt; that how to set the background color of the textbox to be&lt;br&gt;
&amp;gt; transparent as if there is no box frame, but still with&lt;br&gt;
&amp;gt; strings.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I used the following command:&lt;br&gt;
&amp;gt; set(mTextBox,'BackgroundColor',[1 1 1])&lt;br&gt;
&amp;gt; but don't know what's the corresponding 3 numbers for&lt;br&gt;
&amp;gt; transparent, or I should set some other properties instead&lt;br&gt;
&amp;gt; of background to do this?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Many thanks,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; James&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; "Scott Frasso" &amp;lt;scott.frasso@mathworks.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;lt;fa1qs8$83n$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt;&amp;gt; Hello James,&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; % Create the figure&lt;br&gt;
&amp;gt;&amp;gt; mFigure = figure()&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; % Create a uicontrol of type "text"&lt;br&gt;
&amp;gt;&amp;gt; mTextBox = uicontrol('style','text')&lt;br&gt;
&amp;gt;&amp;gt; set(mTextBox,'String','Hello World')&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; % To move the the Text Box around you can set and get the&lt;br&gt;
&amp;gt; position of Text&lt;br&gt;
&amp;gt;&amp;gt; Box itself&lt;br&gt;
&amp;gt;&amp;gt; mTextBoxPosition = get(mTextBox,'Position')&lt;br&gt;
&amp;gt;&amp;gt; % The array mTextBoxPosition has four elements&lt;br&gt;
&amp;gt;&amp;gt; % [x y length height]&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; % Something that I find useful is to set the Position&lt;br&gt;
&amp;gt; Units to Characters,&lt;br&gt;
&amp;gt;&amp;gt; the default is pixels&lt;br&gt;
&amp;gt;&amp;gt; set(mTextBox,'Units','characters')&lt;br&gt;
&amp;gt;&amp;gt; % This means a Text Box with 3 lines of text will have a&lt;br&gt;
&amp;gt; height of 3&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; -Scott&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; "James Anderson" &amp;lt;janderson_net@yahoo.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt;&amp;gt; news:fa1nue$lhh$1@fred.mathworks.com...&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt; Hi,&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt; I want to insert a textbox in a given location of a figure&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt; and write some desciption in it, there is no edge in the&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt; textbox. I know how to do this manually, but don't know how&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt; to do this with script.&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt; Thanks,&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; &amp;gt; James&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Fri, 17 Aug 2007 14:26:40 -0400</pubDate>
      <title>Re: how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#388138</link>
      <author>roberson@ibd.nrc-cnrc.gc.ca (Walter Roberson)</author>
      <description>In article &amp;lt;fa45ci$j9b$1@fred.mathworks.com&amp;gt;,&lt;br&gt;
James Anderson &amp;lt;janderson_net@yahoo.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;Another question I forget to ask is that in the command:&lt;br&gt;
&amp;gt;set(mTextBox,'String','Hello World')&lt;br&gt;
&amp;gt;is there any way to set the string to a two-line text so&lt;br&gt;
&amp;gt;that the first line is empty and the second line is "hello&lt;br&gt;
&amp;gt;world"? I tried several times but seems that it only works&lt;br&gt;
&amp;gt;for one line. &lt;br&gt;
&lt;br&gt;
set(mTextbox,'String',{'', 'Hello World'})&lt;br&gt;
&lt;br&gt;
You will also find that in some contexts (e.g., -some- uicontrol&lt;br&gt;
styles), you can use '|' to mark the end of lines&lt;br&gt;
&lt;br&gt;
set(controlhandle,'String', '|Hello World');&lt;br&gt;
&lt;br&gt;
and in some contexts, you can use \n between lines&lt;br&gt;
&lt;br&gt;
set(somehandle, 'String', sprintf('\nHello World') );&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
&amp;nbsp;&amp;nbsp;"It is important to remember that when it comes to law, computers&lt;br&gt;
&amp;nbsp;&amp;nbsp;never make copies, only human beings make copies.  Computers are given&lt;br&gt;
&amp;nbsp;&amp;nbsp;commands, not permission. Only people can be given permission."&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-- Brad Templeton&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Fri, 17 Aug 2007 12:47:14 -0400</pubDate>
      <title>Re: how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#388124</link>
      <author>James Anderson</author>
      <description>Scott,&lt;br&gt;
&lt;br&gt;
Another question I forget to ask is that in the command:&lt;br&gt;
set(mTextBox,'String','Hello World')&lt;br&gt;
is there any way to set the string to a two-line text so&lt;br&gt;
that the first line is empty and the second line is "hello&lt;br&gt;
world"? I tried several times but seems that it only works&lt;br&gt;
for one line. &lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
James&lt;br&gt;
"Scott Frasso" &amp;lt;scott.frasso@mathworks.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fa1qs8$83n$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hello James,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % Create the figure&lt;br&gt;
&amp;gt; mFigure = figure()&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % Create a uicontrol of type "text"&lt;br&gt;
&amp;gt; mTextBox = uicontrol('style','text')&lt;br&gt;
&amp;gt; set(mTextBox,'String','Hello World')&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % To move the the Text Box around you can set and get the&lt;br&gt;
position of Text &lt;br&gt;
&amp;gt; Box itself&lt;br&gt;
&amp;gt; mTextBoxPosition = get(mTextBox,'Position')&lt;br&gt;
&amp;gt; % The array mTextBoxPosition has four elements&lt;br&gt;
&amp;gt; % [x y length height]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % Something that I find useful is to set the Position&lt;br&gt;
Units to Characters, &lt;br&gt;
&amp;gt; the default is pixels&lt;br&gt;
&amp;gt; set(mTextBox,'Units','characters')&lt;br&gt;
&amp;gt; % This means a Text Box with 3 lines of text will have a&lt;br&gt;
height of 3&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; -Scott&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; "James Anderson" &amp;lt;janderson_net@yahoo.com&amp;gt; wrote in message &lt;br&gt;
&amp;gt; news:fa1nue$lhh$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; &amp;gt; Hi,&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; I want to insert a textbox in a given location of a figure&lt;br&gt;
&amp;gt; &amp;gt; and write some desciption in it, there is no edge in the&lt;br&gt;
&amp;gt; &amp;gt; textbox. I know how to do this manually, but don't know how&lt;br&gt;
&amp;gt; &amp;gt; to do this with script.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Thanks,&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; James &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 16 Aug 2007 18:25:37 -0400</pubDate>
      <title>Re: how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#388022</link>
      <author>us</author>
      <description>Jeff:&lt;br&gt;
&amp;lt;SNIP wants to set his/her subplot axes manually...&lt;br&gt;
&lt;br&gt;
&amp;gt; Can you set the position to a subplot index instead of a &lt;br&gt;
certain x,y location...&lt;br&gt;
&lt;br&gt;
yes, but with limitations...&lt;br&gt;
&lt;br&gt;
% look at this example&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos=[&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.1,.1,.3,.3&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.4,.4,.3,.3&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;subplot(2,2,[1,2]);&lt;br&gt;
for  i=1:size(pos,1)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;subplot('position',pos(i,:));&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pause&lt;br&gt;
end&lt;br&gt;
% so - a new subplot removes all others underneath it...&lt;br&gt;
% a better solution&lt;br&gt;
% get pos of a subplot&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;figure;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;sh=subplot(2,2,1);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos=[&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;get(sh,'position')&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;delete(sh); % not necessary...&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ah=zeros(size(pos,1),1);&lt;br&gt;
for  i=1:size(pos,1)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ah(i)=axes('position',pos(i,:));&lt;br&gt;
end&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;axes(ah(1)); % make axis one active...&lt;br&gt;
&lt;br&gt;
us&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 16 Aug 2007 18:03:21 -0400</pubDate>
      <title>Re: how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#388018</link>
      <author>Jeff </author>
      <description>Hey, cool hint.  I've also wondered how to add text to plots automatically.  &lt;br&gt;
&lt;br&gt;
Can you set the position to a subplot index instead of a certain x,y location?&lt;br&gt;
&lt;br&gt;
ie: &lt;br&gt;
&lt;br&gt;
subplot(2,2,1);&lt;br&gt;
% plot 1&lt;br&gt;
&lt;br&gt;
subplot(2,2,2);&lt;br&gt;
% plot 2&lt;br&gt;
&lt;br&gt;
subplot(2,2,3);&lt;br&gt;
% plot 3&lt;br&gt;
&lt;br&gt;
subplot(2,2,4);&lt;br&gt;
% textbox&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 16 Aug 2007 18:02:00 -0400</pubDate>
      <title>Re: how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#388017</link>
      <author>James Anderson</author>
      <description>Scott,&lt;br&gt;
&lt;br&gt;
Thanks for your reply, it works! One additional question is&lt;br&gt;
that how to set the background color of the textbox to be&lt;br&gt;
transparent as if there is no box frame, but still with&lt;br&gt;
strings. &lt;br&gt;
&lt;br&gt;
I used the following command: &lt;br&gt;
set(mTextBox,'BackgroundColor',[1 1 1])&lt;br&gt;
but don't know what's the corresponding 3 numbers for&lt;br&gt;
transparent, or I should set some other properties instead&lt;br&gt;
of background to do this? &lt;br&gt;
&lt;br&gt;
Many thanks,&lt;br&gt;
&lt;br&gt;
James&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
"Scott Frasso" &amp;lt;scott.frasso@mathworks.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fa1qs8$83n$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hello James,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % Create the figure&lt;br&gt;
&amp;gt; mFigure = figure()&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % Create a uicontrol of type "text"&lt;br&gt;
&amp;gt; mTextBox = uicontrol('style','text')&lt;br&gt;
&amp;gt; set(mTextBox,'String','Hello World')&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % To move the the Text Box around you can set and get the&lt;br&gt;
position of Text &lt;br&gt;
&amp;gt; Box itself&lt;br&gt;
&amp;gt; mTextBoxPosition = get(mTextBox,'Position')&lt;br&gt;
&amp;gt; % The array mTextBoxPosition has four elements&lt;br&gt;
&amp;gt; % [x y length height]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; % Something that I find useful is to set the Position&lt;br&gt;
Units to Characters, &lt;br&gt;
&amp;gt; the default is pixels&lt;br&gt;
&amp;gt; set(mTextBox,'Units','characters')&lt;br&gt;
&amp;gt; % This means a Text Box with 3 lines of text will have a&lt;br&gt;
height of 3&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; -Scott&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; "James Anderson" &amp;lt;janderson_net@yahoo.com&amp;gt; wrote in message &lt;br&gt;
&amp;gt; news:fa1nue$lhh$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; &amp;gt; Hi,&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; I want to insert a textbox in a given location of a figure&lt;br&gt;
&amp;gt; &amp;gt; and write some desciption in it, there is no edge in the&lt;br&gt;
&amp;gt; &amp;gt; textbox. I know how to do this manually, but don't know how&lt;br&gt;
&amp;gt; &amp;gt; to do this with script.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Thanks,&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; James &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 16 Aug 2007 15:35:34 -0400</pubDate>
      <title>Re: how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#387996</link>
      <author>Scott Frasso</author>
      <description>Hello James,&lt;br&gt;
&lt;br&gt;
% Create the figure&lt;br&gt;
mFigure = figure()&lt;br&gt;
&lt;br&gt;
% Create a uicontrol of type "text"&lt;br&gt;
mTextBox = uicontrol('style','text')&lt;br&gt;
set(mTextBox,'String','Hello World')&lt;br&gt;
&lt;br&gt;
% To move the the Text Box around you can set and get the position of Text &lt;br&gt;
Box itself&lt;br&gt;
mTextBoxPosition = get(mTextBox,'Position')&lt;br&gt;
% The array mTextBoxPosition has four elements&lt;br&gt;
% [x y length height]&lt;br&gt;
&lt;br&gt;
% Something that I find useful is to set the Position Units to Characters, &lt;br&gt;
the default is pixels&lt;br&gt;
set(mTextBox,'Units','characters')&lt;br&gt;
% This means a Text Box with 3 lines of text will have a height of 3&lt;br&gt;
&lt;br&gt;
-Scott&lt;br&gt;
&lt;br&gt;
"James Anderson" &amp;lt;janderson_net@yahoo.com&amp;gt; wrote in message &lt;br&gt;
news:fa1nue$lhh$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I want to insert a textbox in a given location of a figure&lt;br&gt;
&amp;gt; and write some desciption in it, there is no edge in the&lt;br&gt;
&amp;gt; textbox. I know how to do this manually, but don't know how&lt;br&gt;
&amp;gt; to do this with script.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; James &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 16 Aug 2007 14:45:34 -0400</pubDate>
      <title>how to insert textbox and write text in a figure by code (not manually)</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154660#387990</link>
      <author>James Anderson</author>
      <description>Hi, &lt;br&gt;
&lt;br&gt;
I want to insert a textbox in a given location of a figure&lt;br&gt;
and write some desciption in it, there is no edge in the&lt;br&gt;
textbox. I know how to do this manually, but don't know how&lt;br&gt;
to do this with script. &lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
James&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
