<?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: Vectorized goto in MATLAB</title>
	<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/</link>
	<description>Loren Shure  works on design of the MATLAB language at &#60;a href="http://www.mathworks.com/"&#62;The MathWorks&#60;/a&#62;. She writes here about once a week on MATLAB programming and related topics. &#60;br&#62;&#60;br&#62;&#60;a href="/images/loren-full.jpg"&#62;&#60;img src="/images/loren.jpg"&#62;&#60;/a&#62;</description>
	<pubDate>Sun, 08 Nov 2009 04:08:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Loren</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-30146</link>
		<dc:creator>Loren</dc:creator>
		<pubDate>Thu, 26 Mar 2009 11:28:01 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-30146</guid>
		<description>Nick-

It really depends on your code.  You can rearrange code to use subfunctions or nested functions, and break and continue statements in loops.

--Loren</description>
		<content:encoded><![CDATA[<p>Nick-</p>
<p>It really depends on your code.  You can rearrange code to use subfunctions or nested functions, and break and continue statements in loops.</p>
<p>&#8211;Loren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-30145</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 26 Mar 2009 09:27:19 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-30145</guid>
		<description>Hello  

I try to figure out what is going with "go to" statment in  MatLab but I am  afraid it's a big mess for me.My issue is the simplest one: Let's say I am  in line 32 and I want to go in line 87 how I do that? 
 What happens when I am in an IF statment and I need to say:  
if(bla bla bla) 
matlab code  
else  
"go to" line 51 
end  
Thanks in advance 
                               Nick</description>
		<content:encoded><![CDATA[<p>Hello  </p>
<p>I try to figure out what is going with &#8220;go to&#8221; statment in  MatLab but I am  afraid it&#8217;s a big mess for me.My issue is the simplest one: Let&#8217;s say I am  in line 32 and I want to go in line 87 how I do that?<br />
 What happens when I am in an IF statment and I need to say:<br />
if(bla bla bla)<br />
matlab code<br />
else<br />
&#8220;go to&#8221; line 51<br />
end<br />
Thanks in advance<br />
                               Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loren</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-26337</link>
		<dc:creator>Loren</dc:creator>
		<pubDate>Sun, 17 Feb 2008 18:21:31 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-26337</guid>
		<description>Dr. Phillip Feldman and Mray,

I have placed your request in the enhancement database.  Thank you for the feedback.

--Loren</description>
		<content:encoded><![CDATA[<p>Dr. Phillip Feldman and Mray,</p>
<p>I have placed your request in the enhancement database.  Thank you for the feedback.</p>
<p>&#8211;Loren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mray</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-26306</link>
		<dc:creator>Mray</dc:creator>
		<pubDate>Sun, 17 Feb 2008 03:20:40 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-26306</guid>
		<description>Often, I like to 'break' out of nested loops.
It would really help having a function that would allow that.</description>
		<content:encoded><![CDATA[<p>Often, I like to &#8216;break&#8217; out of nested loops.<br />
It would really help having a function that would allow that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr. Phillip M. Feldman</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-23338</link>
		<dc:creator>Dr. Phillip M. Feldman</dc:creator>
		<pubDate>Sun, 16 Dec 2007 01:38:04 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-23338</guid>
		<description>Turning serious for just a moment: In nested loops, "break" exits only from the loop in which it occurs.  If Matlab had a goto statement, one legitimate application would be to break out of nested loops.  Currently, there is no good way of handling this situation in Matlab.</description>
		<content:encoded><![CDATA[<p>Turning serious for just a moment: In nested loops, &#8220;break&#8221; exits only from the loop in which it occurs.  If Matlab had a goto statement, one legitimate application would be to break out of nested loops.  Currently, there is no good way of handling this situation in Matlab.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loren</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16366</link>
		<dc:creator>Loren</dc:creator>
		<pubDate>Fri, 10 Aug 2007 00:42:39 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16366</guid>
		<description>Huda-

Look into try-catch, and writing functions that are reusable so you can call them from different sites in your code.

--Loren</description>
		<content:encoded><![CDATA[<p>Huda-</p>
<p>Look into try-catch, and writing functions that are reusable so you can call them from different sites in your code.</p>
<p>&#8211;Loren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: huda</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16363</link>
		<dc:creator>huda</dc:creator>
		<pubDate>Thu, 09 Aug 2007 22:01:19 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16363</guid>
		<description>Ok ,What I can  use instead of goto I need it such this command in my code?

THANKS,HUDA</description>
		<content:encoded><![CDATA[<p>Ok ,What I can  use instead of goto I need it such this command in my code?</p>
<p>THANKS,HUDA</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loren</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16348</link>
		<dc:creator>Loren</dc:creator>
		<pubDate>Mon, 06 Aug 2007 11:10:32 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16348</guid>
		<description>Huda-

There is no GOTO statement in MATLAB.  This was a joke on April Fool's Day.  The command in MATLAB for exit is simply exit.  Perhaps you'd benefit from reading the "Getting Started with MATLAB" guide.

--Loren</description>
		<content:encoded><![CDATA[<p>Huda-</p>
<p>There is no GOTO statement in MATLAB.  This was a joke on April Fool&#8217;s Day.  The command in MATLAB for exit is simply exit.  Perhaps you&#8217;d benefit from reading the &#8220;Getting Started with MATLAB&#8221; guide.</p>
<p>&#8211;Loren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: huda</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16346</link>
		<dc:creator>huda</dc:creator>
		<pubDate>Mon, 06 Aug 2007 10:41:25 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16346</guid>
		<description>hello,
please i need example for goto statment in matlab.
and how can use the exit statment in matlab?

thanks</description>
		<content:encoded><![CDATA[<p>hello,<br />
please i need example for goto statment in matlab.<br />
and how can use the exit statment in matlab?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: huda</title>
		<link>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16345</link>
		<dc:creator>huda</dc:creator>
		<pubDate>Mon, 06 Aug 2007 10:38:47 +0000</pubDate>
		<guid>http://blogs.mathworks.com/loren/2006/04/01/goto-coming-at-long-last-vectorized-no-less/#comment-16345</guid>
		<description>hello,
please I need example for goto in matlab.
and how can use Exit statment in matlab?
thanks</description>
		<content:encoded><![CDATA[<p>hello,<br />
please I need example for goto in matlab.<br />
and how can use Exit statment in matlab?<br />
thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
