<?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: Giving your code some privacy</title>
	<atom:link href="http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/</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: mnasr14</title>
		<link>http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-8011</link>
		<dc:creator>mnasr14</dc:creator>
		<pubDate>Fri, 19 Aug 2011 13:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-8011</guid>
		<description>there is a trick to have permanent bookmarks:
you can write an additional line without ; where you want to refer frequently.
this make an output in command window and an orange dash (messages you to add a ;) will appear in the right side. you can easily click on orange dashes as bookmarks! ;-)</description>
		<content:encoded><![CDATA[<p>there is a trick to have permanent bookmarks:<br />
you can write an additional line without ; where you want to refer frequently.<br />
this make an output in command window and an orange dash (messages you to add a ;) will appear in the right side. you can easily click on orange dashes as bookmarks! ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christina Roberts</title>
		<link>http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1649</link>
		<dc:creator>Christina Roberts</dc:creator>
		<pubDate>Wed, 28 Nov 2007 14:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1649</guid>
		<description>Hi Will,

We will fold switch statements in a future release.  Thanks for letting us know how you are using code folding!

-Christina</description>
		<content:encoded><![CDATA[<p>Hi Will,</p>
<p>We will fold switch statements in a future release.  Thanks for letting us know how you are using code folding!</p>
<p>-Christina</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will Dampier</title>
		<link>http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1639</link>
		<dc:creator>Will Dampier</dc:creator>
		<pubDate>Tue, 27 Nov 2007 23:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1639</guid>
		<description>Personally, I love the new folding feature.  I would love to see folding SWITCH statements since I often parse through dozens of input arguments to VARARGIN and they often take up 100 or more lines of particularly ugly code (try-catches, warnings messages, error messages, long conditional statements).  I&#039;ve started to put them into a large subfunction which modifies pre-initialized flag variables just so I can foldd it out-of-site but I don&#039;t like habitually sharing variables between functions like that.

Thanks
Will</description>
		<content:encoded><![CDATA[<p>Personally, I love the new folding feature.  I would love to see folding SWITCH statements since I often parse through dozens of input arguments to VARARGIN and they often take up 100 or more lines of particularly ugly code (try-catches, warnings messages, error messages, long conditional statements).  I&#8217;ve started to put them into a large subfunction which modifies pre-initialized flag variables just so I can foldd it out-of-site but I don&#8217;t like habitually sharing variables between functions like that.</p>
<p>Thanks<br />
Will</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1635</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Tue, 27 Nov 2007 17:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1635</guid>
		<description>Hi J.R.,

Your absolutely right! Saving breakpoints, breakpoint conditions and bookmarks are blatantly missing features.

You can actaully save breakpoints and conditional breakpoints manually by doing the following:

To save:

&gt;&gt; mybreakpoints = dbstatus;
&gt;&gt; save mydebugsession mybreakpoints

To load:

&gt;&gt; load mydebugsession mybreakpoints
&gt;&gt; dbstop(mybreakpoints)

We are currently working on more seamless ways to do this though.

-Ken</description>
		<content:encoded><![CDATA[<p>Hi J.R.,</p>
<p>Your absolutely right! Saving breakpoints, breakpoint conditions and bookmarks are blatantly missing features.</p>
<p>You can actaully save breakpoints and conditional breakpoints manually by doing the following:</p>
<p>To save:</p>
<p>>> mybreakpoints = dbstatus;<br />
>> save mydebugsession mybreakpoints</p>
<p>To load:</p>
<p>>> load mydebugsession mybreakpoints<br />
>> dbstop(mybreakpoints)</p>
<p>We are currently working on more seamless ways to do this though.</p>
<p>-Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J.R.Menzinger</title>
		<link>http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1629</link>
		<dc:creator>J.R.Menzinger</dc:creator>
		<pubDate>Tue, 27 Nov 2007 11:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2007/11/26/giving-your-code-some-privacy/#comment-1629</guid>
		<description>That&#039;s great!
but... I&#039;m waiting since 4 or 5 Releases for these option:
SAVE BREAKPOINTS
SAVE BREAKPOINTS CONDITIONS
SAVE BOOKMARKS
by leave the session.


I think it should be easy to implement, isn&#039;t it?

Best Regards

J.R.!</description>
		<content:encoded><![CDATA[<p>That&#8217;s great!<br />
but&#8230; I&#8217;m waiting since 4 or 5 Releases for these option:<br />
SAVE BREAKPOINTS<br />
SAVE BREAKPOINTS CONDITIONS<br />
SAVE BOOKMARKS<br />
by leave the session.</p>
<p>I think it should be easy to implement, isn&#8217;t it?</p>
<p>Best Regards</p>
<p>J.R.!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

