<?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 on: I&#8217;ve got something to cell you</title>
	<atom:link href="http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/</link>
	<description>Mike works on the MATLAB Desktop team</description>
	<lastBuildDate>Sun, 12 Feb 2012 04:03:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-7266</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 26 Aug 2010 12:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-7266</guid>
		<description>@chester,
 I&#039;m not sure what you mean by &quot;embedded&quot; breakpoints, but you can use the db commands (dbstop, dbclear, etc) to programmatically set breakpoints</description>
		<content:encoded><![CDATA[<p>@chester,<br />
 I&#8217;m not sure what you mean by &#8220;embedded&#8221; breakpoints, but you can use the db commands (dbstop, dbclear, etc) to programmatically set breakpoints</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chester</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-7262</link>
		<dc:creator>chester</dc:creator>
		<pubDate>Mon, 23 Aug 2010 14:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-7262</guid>
		<description>Hi Ken,

I&#039;m a huge fan. Anyway, I&#039;d like to put in another vote for breakpoints in cell mode, as well as for Matlab always returning the location of any thrown error (in cell mode and otherwise).

I also think it would be useful for Matlab to allow &quot;embedded&quot; breakpoints that would allow me, for example, to put a breakpoint in a function that I call from within some script.

Keep up the good work!</description>
		<content:encoded><![CDATA[<p>Hi Ken,</p>
<p>I&#8217;m a huge fan. Anyway, I&#8217;d like to put in another vote for breakpoints in cell mode, as well as for Matlab always returning the location of any thrown error (in cell mode and otherwise).</p>
<p>I also think it would be useful for Matlab to allow &#8220;embedded&#8221; breakpoints that would allow me, for example, to put a breakpoint in a function that I call from within some script.</p>
<p>Keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6825</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 02 Feb 2010 18:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6825</guid>
		<description>@Chen,

 No there is not. The code in a cell may depend on the code executed previously. The easiest thing to do is to put the desired code in separate functions and call those functions from your script. If you want to still get the text of the code in a publish document, you can combine with the &lt;tt&gt;type&lt;/tt&gt;, like so:

&lt;pre style=&quot;background: #F9F7F3; padding: 10px; border: 1px solid rgb(200,200,200)&quot;&gt;type(&lt;span style=&quot;color: #A020F0&quot;&gt;&#039;cell_subfun.m&#039;&lt;/span&gt;)
cell_subfun&lt;/pre&gt;

Alernatively, you can parse a program file, find the cell title lines, grab a subset of code and use the &lt;tt&gt;eval&lt;/tt&gt; command. I recommend against this approach.</description>
		<content:encoded><![CDATA[<p>@Chen,</p>
<p> No there is not. The code in a cell may depend on the code executed previously. The easiest thing to do is to put the desired code in separate functions and call those functions from your script. If you want to still get the text of the code in a publish document, you can combine with the <tt>type</tt>, like so:</p>
<pre style="background: #F9F7F3; padding: 10px; border: 1px solid rgb(200,200,200)">type(<span style="color: #A020F0">'cell_subfun.m'</span>)
cell_subfun</pre>
<p>Alernatively, you can parse a program file, find the cell title lines, grab a subset of code and use the <tt>eval</tt> command. I recommend against this approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chen Brestel</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6823</link>
		<dc:creator>Chen Brestel</dc:creator>
		<pubDate>Tue, 02 Feb 2010 17:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6823</guid>
		<description>Hi Mike,
(2009b)
Suppose I have an mfile w/ a few cells.

While the mfile isn&#039;t viewed (in the editor), 

is there a way to run a specific cell using 
a keyboard shortcut,
Matlab desktop shortcuts,
command line?

Thanks,
Chen</description>
		<content:encoded><![CDATA[<p>Hi Mike,<br />
(2009b)<br />
Suppose I have an mfile w/ a few cells.</p>
<p>While the mfile isn&#8217;t viewed (in the editor), </p>
<p>is there a way to run a specific cell using<br />
a keyboard shortcut,<br />
Matlab desktop shortcuts,<br />
command line?</p>
<p>Thanks,<br />
Chen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6564</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Fri, 09 Oct 2009 11:47:46 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6564</guid>
		<description>Hi Patrik,

We didn&#039;t intentionally exclude the ability to use breakpoints in cell mode -- this was actually a consequence of the way cell mode was implemented. We&#039;re working to remedy this issue.

-Ken</description>
		<content:encoded><![CDATA[<p>Hi Patrik,</p>
<p>We didn&#8217;t intentionally exclude the ability to use breakpoints in cell mode &#8212; this was actually a consequence of the way cell mode was implemented. We&#8217;re working to remedy this issue.</p>
<p>-Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrik Brynolfsson</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6563</link>
		<dc:creator>Patrik Brynolfsson</dc:creator>
		<pubDate>Fri, 09 Oct 2009 07:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6563</guid>
		<description>Another vote for breakpoints in cell mode! I&#039;m really surprised that it&#039;s not implemented from the start, what harm do breakpoints do? For rapid execution of part of the code when evaluating and developing this would be very useful. Knowing which line threw an error is also necessary, why did the guys at matlab not think this was needed in cell mode beats me.</description>
		<content:encoded><![CDATA[<p>Another vote for breakpoints in cell mode! I&#8217;m really surprised that it&#8217;s not implemented from the start, what harm do breakpoints do? For rapid execution of part of the code when evaluating and developing this would be very useful. Knowing which line threw an error is also necessary, why did the guys at matlab not think this was needed in cell mode beats me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AV_R</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6404</link>
		<dc:creator>AV_R</dc:creator>
		<pubDate>Mon, 10 Aug 2009 16:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6404</guid>
		<description>I&#039;m also highly interested in having breakpoints in cell mode. I use the cell mode to prototype quickly some code which typically ends up as part of some function. Hence, the ability to debug this code would be very helpful.</description>
		<content:encoded><![CDATA[<p>I&#8217;m also highly interested in having breakpoints in cell mode. I use the cell mode to prototype quickly some code which typically ends up as part of some function. Hence, the ability to debug this code would be very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6182</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Sat, 11 Apr 2009 18:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6182</guid>
		<description>Thanks for the feedback Tim -- we&#039;ll certainly take it under consideration. Glad you found the post useful!

-Ken</description>
		<content:encoded><![CDATA[<p>Thanks for the feedback Tim &#8212; we&#8217;ll certainly take it under consideration. Glad you found the post useful!</p>
<p>-Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Smith</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6181</link>
		<dc:creator>Tim Smith</dc:creator>
		<pubDate>Fri, 10 Apr 2009 16:46:45 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-6181</guid>
		<description>Another voice for breakpoints here -- this looks like it should be fantastically useful, but no breakpoint support makes this feature much less interesting as a rapid code iteration tool, particularly in the context of debugging algorithms. Thanks for a great intro post, though!</description>
		<content:encoded><![CDATA[<p>Another voice for breakpoints here &#8212; this looks like it should be fantastically useful, but no breakpoint support makes this feature much less interesting as a rapid code iteration tool, particularly in the context of debugging algorithms. Thanks for a great intro post, though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-5945</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 27 Oct 2008 13:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/07/ive-got-something-to-cell-you/#comment-5945</guid>
		<description>Fiona,

 I am not sure what you mean by F5 does not work. Can you verify:

(1) That F5 is the keystroke listed next to Run xxx.m in the Debug menu? (where xxx is the name of the file you are editing).

(2) Does it fail just for one file or all files?

(3) Try creating a new script with just the following line:
&lt;tt&gt;disp(&#039;hello world&#039;)&lt;/tt&gt;. Press F5. 

(4) What is your computer setup? Are you using windows or a different OS? Are you at the machine running MATLAB or are you connecting over a remote connection?</description>
		<content:encoded><![CDATA[<p>Fiona,</p>
<p> I am not sure what you mean by F5 does not work. Can you verify:</p>
<p>(1) That F5 is the keystroke listed next to Run xxx.m in the Debug menu? (where xxx is the name of the file you are editing).</p>
<p>(2) Does it fail just for one file or all files?</p>
<p>(3) Try creating a new script with just the following line:<br />
<tt>disp('hello world')</tt>. Press F5. </p>
<p>(4) What is your computer setup? Are you using windows or a different OS? Are you at the machine running MATLAB or are you connecting over a remote connection?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

