<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: MATLAB Basics: Setting a background image for a GUI</title>
	<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/</link>
	<description>&#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=969735&#38;objectType=author"&#62;Bob&#60;/a&#62;, &#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1093599&#38;objectType=author"&#62;Brett&#60;/a&#62; &#38; &#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1094142&#38;objectType=author"&#62;Jiro&#60;/a&#62; share favorite user-contributed submissions from the File Exchange.</description>
	<pubDate>Mon, 23 Nov 2009 01:14:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-12917</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Wed, 29 Oct 2008 19:42:00 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-12917</guid>
		<description>Tasha,

I would recommend this video:

http://blogs.mathworks.com/pick/2008/05/13/accessing-data-from-one-widget-to-another-in-guide/

It will show you how to get data from one uicontrol (like an editbox) and use it as input in the callback of another.

I am sorry, but I am not too clear on your second question.  Please contact support@mathworks.com with a more detailed question.

Doug</description>
		<content:encoded><![CDATA[<p>Tasha,</p>
<p>I would recommend this video:</p>
<p><a href="http://blogs.mathworks.com/pick/2008/05/13/accessing-data-from-one-widget-to-another-in-guide/" rel="nofollow">http://blogs.mathworks.com/pick/2008/05/13/accessing-data-from-one-widget-to-another-in-guide/</a></p>
<p>It will show you how to get data from one uicontrol (like an editbox) and use it as input in the callback of another.</p>
<p>I am sorry, but I am not too clear on your second question.  Please contact <a href="mailto:support@mathworks.com">support@mathworks.com</a> with a more detailed question.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tasha</title>
		<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-12912</link>
		<dc:creator>tasha</dc:creator>
		<pubDate>Tue, 28 Oct 2008 09:43:34 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-12912</guid>
		<description>i really need help on my MATLAB GUI program. can anyone help me? please email me at intan_tassya@yahoo.com if you're wiling to help me.

i've create a simple GUI interface. im using MATLAB V.7.2.. but i don't even know how to input the function . for example, total_area= area1+area2 when we press the 'calculate' button. can anyone show me 1 clear example on this matter, i need to complete my project within 1 week starting from today...i've read all your comments etc, but i couldnt understand it.. besides, im importing the jpeg image into the axes which i labelled as 'pic1'...when i generate, the picture will be displayed, but when i click the 'next' button, and trying to go back to the previous interface, the image gone. i dont understand why...please somebody, i really need help on MATLAB GUI...please email me..thank you very much :(</description>
		<content:encoded><![CDATA[<p>i really need help on my MATLAB GUI program. can anyone help me? please email me at <a href="mailto:intan_tassya@yahoo.com">intan_tassya@yahoo.com</a> if you&#8217;re wiling to help me.</p>
<p>i&#8217;ve create a simple GUI interface. im using MATLAB V.7.2.. but i don&#8217;t even know how to input the function . for example, total_area= area1+area2 when we press the &#8216;calculate&#8217; button. can anyone show me 1 clear example on this matter, i need to complete my project within 1 week starting from today&#8230;i&#8217;ve read all your comments etc, but i couldnt understand it.. besides, im importing the jpeg image into the axes which i labelled as &#8216;pic1&#8242;&#8230;when i generate, the picture will be displayed, but when i click the &#8216;next&#8217; button, and trying to go back to the previous interface, the image gone. i dont understand why&#8230;please somebody, i really need help on MATLAB GUI&#8230;please email me..thank you very much :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-8729</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Mon, 21 Jan 2008 15:21:10 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-8729</guid>
		<description>xiaolan,

You can put an image in a button like this:

a = uicontrol('style','pushbutton')
set(a,'cdata',rand(10,10,3))

I set he cdata to a random RGB matrix, but you can use whatever you like.

Doug</description>
		<content:encoded><![CDATA[<p>xiaolan,</p>
<p>You can put an image in a button like this:</p>
<p>a = uicontrol(&#8217;style&#8217;,'pushbutton&#8217;)<br />
set(a,&#8217;cdata&#8217;,rand(10,10,3))</p>
<p>I set he cdata to a random RGB matrix, but you can use whatever you like.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xiaolan</title>
		<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-8612</link>
		<dc:creator>xiaolan</dc:creator>
		<pubDate>Fri, 18 Jan 2008 06:11:57 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-8612</guid>
		<description>May i know how to put an image on a button? i don't want any wordings on the button, i just want to have image on it.

Thanks.</description>
		<content:encoded><![CDATA[<p>May i know how to put an image on a button? i don&#8217;t want any wordings on the button, i just want to have image on it.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaibhav Bedia</title>
		<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-8456</link>
		<dc:creator>Vaibhav Bedia</dc:creator>
		<pubDate>Sat, 12 Jan 2008 15:52:05 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-8456</guid>
		<description>I am having some problems with the background image.Things work fine once but if i close MATLAB and start the GUI again the axes loses its TAG and hence the axes becomes invisible.I need to rename it manually everytime.Is there a way to solve this?</description>
		<content:encoded><![CDATA[<p>I am having some problems with the background image.Things work fine once but if i close MATLAB and start the GUI again the axes loses its TAG and hence the axes becomes invisible.I need to rename it manually everytime.Is there a way to solve this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-3925</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Tue, 30 Oct 2007 13:36:10 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-3925</guid>
		<description>With a little work, IMAGE should do fine here also.  It is just that IMSHOW, from the image processing toolbox, takes care of many book keeping type tasks for you so your image always looks great.

Doug</description>
		<content:encoded><![CDATA[<p>With a little work, IMAGE should do fine here also.  It is just that IMSHOW, from the image processing toolbox, takes care of many book keeping type tasks for you so your image always looks great.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Miller</title>
		<link>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-3126</link>
		<dc:creator>Craig Miller</dc:creator>
		<pubDate>Wed, 17 Oct 2007 18:40:06 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2007/10/16/matlab-basics-setting-a-background-image-for-a-gui/#comment-3126</guid>
		<description>Nifty idea.  Is there a way to do this without using imshow from the Image Processing Toolbox, with just 'plain' Matlab?

Thanks,
Craig</description>
		<content:encoded><![CDATA[<p>Nifty idea.  Is there a way to do this without using imshow from the Image Processing Toolbox, with just &#8216;plain&#8217; Matlab?</p>
<p>Thanks,<br />
Craig</p>
]]></content:encoded>
	</item>
</channel>
</rss>
