<?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 for blinkdagger</title>
	<atom:link href="http://blinkdagger.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blinkdagger.com</link>
	<description>an Engineering and MATLAB blog</description>
	<pubDate>Fri, 20 Nov 2009 22:19:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Matlab GUI Tutorial - Basic Data Processing Tool by Zane Montgomery</title>
		<link>http://blinkdagger.com/matlab/matlab-gui-tutorial-basic-data-processing-tool/comment-page-1/#comment-6267</link>
		<dc:creator>Zane Montgomery</dc:creator>
		<pubDate>Thu, 19 Nov 2009 15:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.blinkdagger.com/matlab/matlab-gui-tutorial-basic-data-processing-tool#comment-6267</guid>
		<description>I still plan on using GUIDE for many years to come likely, but there are some good non-GUIDE tutorials here if you want to venture that way:

http://blogs.mathworks.com/videos/2009/08/06/gui-tutorials-from-the-file-exchange/</description>
		<content:encoded><![CDATA[<p>I still plan on using GUIDE for many years to come likely, but there are some good non-GUIDE tutorials here if you want to venture that way:</p>
<p><a href="http://blogs.mathworks.com/videos/2009/08/06/gui-tutorials-from-the-file-exchange/" rel="nofollow">http://blogs.mathworks.com/videos/2009/08/06/gui-tutorials-from-the-file-exchange/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Matlab GUI Tutorial - How to Stop a Long Running Function without using &#8220;control + c&#8221; by Marc</title>
		<link>http://blinkdagger.com/matlab/matlab-gui-tutorial-how-to-stop-a-long-running-function/comment-page-1/#comment-6266</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Thu, 19 Nov 2009 13:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.blinkdagger.com/matlab/matlab-gui-tutorial-how-to-stop-a-long-running-function#comment-6266</guid>
		<description>Thank you very much!

This trick helped me a lot!</description>
		<content:encoded><![CDATA[<p>Thank you very much!</p>
<p>This trick helped me a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Matlab GUI Tutorial - Basic Data Processing Tool by Helene</title>
		<link>http://blinkdagger.com/matlab/matlab-gui-tutorial-basic-data-processing-tool/comment-page-1/#comment-6265</link>
		<dc:creator>Helene</dc:creator>
		<pubDate>Thu, 19 Nov 2009 12:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.blinkdagger.com/matlab/matlab-gui-tutorial-basic-data-processing-tool#comment-6265</guid>
		<description>Success!

Many thanks. By the way, "Pimp My GUI" was hilarious - made me LOL.

Any advice on if and when to transition to building GUIs without the generous help of GUIDE?

Helene</description>
		<content:encoded><![CDATA[<p>Success!</p>
<p>Many thanks. By the way, &#8220;Pimp My GUI&#8221; was hilarious - made me LOL.</p>
<p>Any advice on if and when to transition to building GUIs without the generous help of GUIDE?</p>
<p>Helene</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MATLAB: How to Create an Animation by kourounada</title>
		<link>http://blinkdagger.com/matlab/matlab-how-to-create-an-animation/comment-page-1/#comment-6264</link>
		<dc:creator>kourounada</dc:creator>
		<pubDate>Thu, 19 Nov 2009 08:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://blinkdagger.com/?p=1763#comment-6264</guid>
		<description>hi, I am doing a small program to simulate a chase between a dog , a cat ,a mouse . Is it possilbe to simulate the chase  with matlab?</description>
		<content:encoded><![CDATA[<p>hi, I am doing a small program to simulate a chase between a dog , a cat ,a mouse . Is it possilbe to simulate the chase  with matlab?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Matlab GUI Tutorial - Basic Data Processing Tool by Zane Montgomery</title>
		<link>http://blinkdagger.com/matlab/matlab-gui-tutorial-basic-data-processing-tool/comment-page-1/#comment-6263</link>
		<dc:creator>Zane Montgomery</dc:creator>
		<pubDate>Wed, 18 Nov 2009 16:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.blinkdagger.com/matlab/matlab-gui-tutorial-basic-data-processing-tool#comment-6263</guid>
		<description>Helene,

Don't worry about the blue text from the tutorials.  That is just an incomplete design for the coding language used by the website.  It should NOT turn blue in your .m file.

The enableButtons/disableButtons functions can be called (almost) anywhere in your GUI .m file.  If you call a function somewhere in your .m file, it searches the list of possible functions, including anywhere in the main level of your GUI.  I would just copy/paste the enable/disableButtons functions to the very end of your GUI.  Make sure they are separate functions by following the vertical grey line immediately to the left of your written code.  You should see that a new line stops/starts for each individual function.

The big block of text/code belongs only in 'start_pushbutton_Callback' function, not in the enable/disableButtons functions.

All of the 'set' commands should be left alone, no need to any any code after those.  Those are all self-contained within the enable/disableButtons functions.

in short:
copy/paste the block of code at the very top (on p4) into the 'start_pushbutton_Callback' function

copy/paste the enable/disableButtons functions into the end of your GUI .m file

I admittedly haven't gone through this whole tutorial, but let me know if any questions/errors arise.

-Zane</description>
		<content:encoded><![CDATA[<p>Helene,</p>
<p>Don&#8217;t worry about the blue text from the tutorials.  That is just an incomplete design for the coding language used by the website.  It should NOT turn blue in your .m file.</p>
<p>The enableButtons/disableButtons functions can be called (almost) anywhere in your GUI .m file.  If you call a function somewhere in your .m file, it searches the list of possible functions, including anywhere in the main level of your GUI.  I would just copy/paste the enable/disableButtons functions to the very end of your GUI.  Make sure they are separate functions by following the vertical grey line immediately to the left of your written code.  You should see that a new line stops/starts for each individual function.</p>
<p>The big block of text/code belongs only in &#8217;start_pushbutton_Callback&#8217; function, not in the enable/disableButtons functions.</p>
<p>All of the &#8217;set&#8217; commands should be left alone, no need to any any code after those.  Those are all self-contained within the enable/disableButtons functions.</p>
<p>in short:<br />
copy/paste the block of code at the very top (on p4) into the &#8217;start_pushbutton_Callback&#8217; function</p>
<p>copy/paste the enable/disableButtons functions into the end of your GUI .m file</p>
<p>I admittedly haven&#8217;t gone through this whole tutorial, but let me know if any questions/errors arise.</p>
<p>-Zane</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.605 seconds -->
<!-- Cached page generated by WP-Super-Cache on 2009-11-20 14:19:33 -->
