<?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: Introduction to UDD	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/introduction-to-udd/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/introduction-to-udd?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=introduction-to-udd</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Thu, 16 May 2013 13:04:21 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.3</generator>
	<item>
		<title>
		By: sebbo		</title>
		<link>https://undocumentedmatlab.com/articles/introduction-to-udd#comment-202815</link>

		<dc:creator><![CDATA[sebbo]]></dc:creator>
		<pubDate>Thu, 16 May 2013 13:04:21 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2036#comment-202815</guid>

					<description><![CDATA[Hi all,

is there a possibility to add something resembling a static function to a udd-class?
I built a rather complex class involving functions not residing in the schema.m-file.
Due to the possibility to subclass uicontainer, I chose UDD to do so.

Now I&#039;m wondering where to put helper-functions that are used in multiple functions, but don&#039;t require a class-instance to work.
Making them non-static by ignoring the class-instance argument is of course a possibility,  though not a nice one.

Any ideas welcome :)]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>is there a possibility to add something resembling a static function to a udd-class?<br />
I built a rather complex class involving functions not residing in the schema.m-file.<br />
Due to the possibility to subclass uicontainer, I chose UDD to do so.</p>
<p>Now I&#8217;m wondering where to put helper-functions that are used in multiple functions, but don&#8217;t require a class-instance to work.<br />
Making them non-static by ignoring the class-instance argument is of course a possibility,  though not a nice one.</p>
<p>Any ideas welcome 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/introduction-to-udd#comment-120254</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 09 Nov 2012 10:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2036#comment-120254</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34803&quot;&gt;Alexander Kosenkov&lt;/a&gt;.

UDD stands for &lt;i&gt;&quot;Universal Data Dictionary&quot;&lt;/i&gt;, according to &lt;i&gt;%matlabroot%/toolbox/matlab/general/+matlab/+depfun/+internal/MatlabType.m&lt;/i&gt;.

Similarly, MCOS stands for &lt;i&gt;&quot;Matlab Common Object System&quot;&lt;/i&gt;. 

Apparently, there&#039;s also a third class type, called OOPS - perhaps this stands for &lt;i&gt;&quot;Object-Oriented Programming Schema&quot;&lt;/i&gt;, possibly related to schema objects.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34803">Alexander Kosenkov</a>.</p>
<p>UDD stands for <i>&#8220;Universal Data Dictionary&#8221;</i>, according to <i>%matlabroot%/toolbox/matlab/general/+matlab/+depfun/+internal/MatlabType.m</i>.</p>
<p>Similarly, MCOS stands for <i>&#8220;Matlab Common Object System&#8221;</i>. </p>
<p>Apparently, there&#8217;s also a third class type, called OOPS &#8211; perhaps this stands for <i>&#8220;Object-Oriented Programming Schema&#8221;</i>, possibly related to schema objects.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Donn		</title>
		<link>https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34887</link>

		<dc:creator><![CDATA[Donn]]></dc:creator>
		<pubDate>Thu, 24 Feb 2011 17:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2036#comment-34887</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34803&quot;&gt;Alexander Kosenkov&lt;/a&gt;.

@Alexander – We can only infer that these classes are known as UDD classes from reading the help text and comments contained in them, noting that feature(&#039;SearchUDDClassesForHelp&#039;, 1) enabled lookfor to search the H1 line of these classes until that feature was discontinued in R2010b, and that Simulink has the command obj = get_param(gco, &#039;UDDObject&#039;) for any current object in a block diagram.

We can speculate on the meaning by noting that UDD was introduced with R12 also known as the MATLAB Version 6 series. In previous releases the handle graphics and Simulink had very different object systems. In R12 these two hierarchical objects were placed on a common object system while maintaining a fairly high degree of compatibility with the previous versions. It seems reasonable to speculate that the U in UDD stands for Unified and the pair of D&#039;s may stand for Data Description or Data Definition, but it is only speculation.

We might also speculate that with the explosion in MCOS usage by The MathWorks that at some future time (the MATLAB 8 series?) UDD will be replaced and handle graphics and Simulink will be placed on the new object system. Only The MathWorks knows for sure.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34803">Alexander Kosenkov</a>.</p>
<p>@Alexander – We can only infer that these classes are known as UDD classes from reading the help text and comments contained in them, noting that feature(&#8216;SearchUDDClassesForHelp&#8217;, 1) enabled lookfor to search the H1 line of these classes until that feature was discontinued in R2010b, and that Simulink has the command obj = get_param(gco, &#8216;UDDObject&#8217;) for any current object in a block diagram.</p>
<p>We can speculate on the meaning by noting that UDD was introduced with R12 also known as the MATLAB Version 6 series. In previous releases the handle graphics and Simulink had very different object systems. In R12 these two hierarchical objects were placed on a common object system while maintaining a fairly high degree of compatibility with the previous versions. It seems reasonable to speculate that the U in UDD stands for Unified and the pair of D&#8217;s may stand for Data Description or Data Definition, but it is only speculation.</p>
<p>We might also speculate that with the explosion in MCOS usage by The MathWorks that at some future time (the MATLAB 8 series?) UDD will be replaced and handle graphics and Simulink will be placed on the new object system. Only The MathWorks knows for sure.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34807</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Wed, 23 Feb 2011 19:35:42 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2036#comment-34807</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34803&quot;&gt;Alexander Kosenkov&lt;/a&gt;.

@Alexander - excellent question. I never saw an official definition anywhere (did I forget to mention it&#039;s undocumented?). My guess is that it stands for &quot;Unified Data Definition&quot; or something similar, but your guess would be as good as mine...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34803">Alexander Kosenkov</a>.</p>
<p>@Alexander &#8211; excellent question. I never saw an official definition anywhere (did I forget to mention it&#8217;s undocumented?). My guess is that it stands for &#8220;Unified Data Definition&#8221; or something similar, but your guess would be as good as mine&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alexander Kosenkov		</title>
		<link>https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34803</link>

		<dc:creator><![CDATA[Alexander Kosenkov]]></dc:creator>
		<pubDate>Wed, 23 Feb 2011 18:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2036#comment-34803</guid>

					<description><![CDATA[Hey, I have quite a rich experience with software development tools, languages, paradygms, libraries... but still...

What does UDD stand for?!

You mentioned this acronym 67 (sixty seven) times on this page, but it&#039;s not getting clear =)]]></description>
			<content:encoded><![CDATA[<p>Hey, I have quite a rich experience with software development tools, languages, paradygms, libraries&#8230; but still&#8230;</p>
<p>What does UDD stand for?!</p>
<p>You mentioned this acronym 67 (sixty seven) times on this page, but it&#8217;s not getting clear =)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Donn		</title>
		<link>https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34149</link>

		<dc:creator><![CDATA[Donn]]></dc:creator>
		<pubDate>Fri, 18 Feb 2011 18:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2036#comment-34149</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34073&quot;&gt;Aurélien&lt;/a&gt;.

Merci Aurélien,

I hope you find the following articles interesting. The MathWorks increments the release number with each release of MATLAB. To find the release number of the version you are using you can look at the license file the release number is the number following the MLM for any of the products you have licensed.

Donn]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34073">Aurélien</a>.</p>
<p>Merci Aurélien,</p>
<p>I hope you find the following articles interesting. The MathWorks increments the release number with each release of MATLAB. To find the release number of the version you are using you can look at the license file the release number is the number following the MLM for any of the products you have licensed.</p>
<p>Donn</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aurélien		</title>
		<link>https://undocumentedmatlab.com/articles/introduction-to-udd#comment-34073</link>

		<dc:creator><![CDATA[Aurélien]]></dc:creator>
		<pubDate>Fri, 18 Feb 2011 09:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2036#comment-34073</guid>

					<description><![CDATA[Hi!

I am really curious to read the next articles. 
By the way, it is the first time , I read that R24 stands for R2010b! 

Aurélien]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>I am really curious to read the next articles.<br />
By the way, it is the first time , I read that R24 stands for R2010b! </p>
<p>Aurélien</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
