<?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: Getting default HG property values	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/getting-default-hg-property-values/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=getting-default-hg-property-values</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Mon, 01 Aug 2016 07:57:01 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-384634</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Mon, 01 Aug 2016 07:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=3622#comment-384634</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-384632&quot;&gt;Royi&lt;/a&gt;.

@Royi - no, &lt;code&gt;get(0,&#039;FactoryFigureColor&#039;)&lt;/code&gt; works just fine for me:

&lt;pre lang=&quot;matlab&quot;&gt;
&gt;&gt; get(0,&#039;FactoryFigureColor&#039;)
ans =
          0.94              0.94              0.94
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-384632">Royi</a>.</p>
<p>@Royi &#8211; no, <code>get(0,'FactoryFigureColor')</code> works just fine for me:</p>
<pre lang="matlab">
>> get(0,'FactoryFigureColor')
ans =
          0.94              0.94              0.94
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Royi		</title>
		<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-384632</link>

		<dc:creator><![CDATA[Royi]]></dc:creator>
		<pubDate>Mon, 01 Aug 2016 07:49:49 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=3622#comment-384632</guid>

					<description><![CDATA[Hi,

Did they replaced the &#039;0&#039; in &lt;code&gt;get(0,&#039;FactoryFigureColor&#039;)&lt;/code&gt; to &#039;groot&#039; -&#062; &lt;code&gt;get(groot, &#039;FactoryFigureColor&#039;)&lt;/code&gt;?]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Did they replaced the &#8216;0&#8217; in <code>get(0,'FactoryFigureColor')</code> to &#8216;groot&#8217; -&gt; <code>get(groot, 'FactoryFigureColor')</code>?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Creating high-quality graphics in MATLAB for papers and presentations &#124; David Gleich: a notebook		</title>
		<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-208798</link>

		<dc:creator><![CDATA[Creating high-quality graphics in MATLAB for papers and presentations &#124; David Gleich: a notebook]]></dc:creator>
		<pubDate>Tue, 04 Jun 2013 17:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=3622#comment-208798</guid>

					<description><![CDATA[[...] are forgotten! Recently, the Undocumented Matlab Blog had a great post about these hidden defaultshttp://undocumentedmatlab.com/blog/getting-default-hg-property-values/. There are many other properties that can potentially be changed as [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] are forgotten! Recently, the Undocumented Matlab Blog had a great post about these hidden defaultshttp://undocumentedmatlab.com/blog/getting-default-hg-property-values/. There are many other properties that can potentially be changed as [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Martin		</title>
		<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-200294</link>

		<dc:creator><![CDATA[Martin]]></dc:creator>
		<pubDate>Fri, 10 May 2013 10:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=3622#comment-200294</guid>

					<description><![CDATA[Apart from &lt;i&gt;&lt;b&gt;get(0, &#039;factory&#039;)&lt;/b&gt;&lt;/i&gt; there&#039;s (since MATLAB 2013a) the undocumented function &lt;i&gt;&lt;b&gt;rootfactoryvalues()&lt;/b&gt;&lt;/i&gt;, that also returns a structure with a lot of factory values. The list returned by the latter is much shorter, but contains values not returned by the former. I failed to see a pattern, but maybe someone else is more inclined to investigate further. :)

Thanks for this interesting post! It improved my understanding of the MATLAB graphics system, which is one of my weaknesses.]]></description>
			<content:encoded><![CDATA[<p>Apart from <i><b>get(0, &#8216;factory&#8217;)</b></i> there&#8217;s (since MATLAB 2013a) the undocumented function <i><b>rootfactoryvalues()</b></i>, that also returns a structure with a lot of factory values. The list returned by the latter is much shorter, but contains values not returned by the former. I failed to see a pattern, but maybe someone else is more inclined to investigate further. 🙂</p>
<p>Thanks for this interesting post! It improved my understanding of the MATLAB graphics system, which is one of my weaknesses.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Donn Shull		</title>
		<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-160302</link>

		<dc:creator><![CDATA[Donn Shull]]></dc:creator>
		<pubDate>Wed, 20 Feb 2013 18:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=3622#comment-160302</guid>

					<description><![CDATA[One interesting note is that handle graphic objects including root are sub classes of the abstract base class &lt;code&gt;GObject&lt;/code&gt;. &lt;code&gt;GObject&lt;/code&gt; defines 29 properties with 11 hidden properties. Sixteen of these properties have Factory values.]]></description>
			<content:encoded><![CDATA[<p>One interesting note is that handle graphic objects including root are sub classes of the abstract base class <code>GObject</code>. <code>GObject</code> defines 29 properties with 11 hidden properties. Sixteen of these properties have Factory values.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dan		</title>
		<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-159190</link>

		<dc:creator><![CDATA[Dan]]></dc:creator>
		<pubDate>Mon, 18 Feb 2013 23:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=3622#comment-159190</guid>

					<description><![CDATA[It is not clear from your post, but you can also set default values of objects other than the root object. I often will generate a figure and then set its default values ...

&lt;pre lang=&#039;matlab&#039;&gt;
hfig = figure;
set(hfig, &#039;defaultAxesColorOrder&#039;, &#039;rgb&#039;);
&lt;/pre&gt;

so that all the axes on that figure have a custom value.]]></description>
			<content:encoded><![CDATA[<p>It is not clear from your post, but you can also set default values of objects other than the root object. I often will generate a figure and then set its default values &#8230;</p>
<pre lang='matlab'>
hfig = figure;
set(hfig, 'defaultAxesColorOrder', 'rgb');
</pre>
<p>so that all the axes on that figure have a custom value.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nick		</title>
		<link>https://undocumentedmatlab.com/articles/getting-default-hg-property-values#comment-158996</link>

		<dc:creator><![CDATA[Nick]]></dc:creator>
		<pubDate>Mon, 18 Feb 2013 14:17:58 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=3622#comment-158996</guid>

					<description><![CDATA[I&#039;ve been wondering about these defaults for a while now. Thanks for posting this.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wondering about these defaults for a while now. Thanks for posting this.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
