- Undocumented Matlab - https://undocumentedmatlab.com -

Types of undocumented Matlab aspects

Posted By Yair Altman On November 24, 2011 | No Comments

Why are there so many undocumented aspects in Matlab?
This is a great question, recently asked [1] by a reader of this blog, so I wanted to expand on it in next week’s article. Before specifying the different reasons, let’s map the nature of undocumented aspects that we find in Matlab.
The term undocumented/unsupported (as opposed to mis-documentated or deprecated) actually refers to quite a large number of different types.
In the following list, the hyperlinks on the list-item titles lead to a list of corresponding articles on this website:

  • Undocumented functions [2]
    Matlab functions which appears nowhere in the documentation, are usually built-in functions (do not have an m-file) and can only be inferred from online CSSM posts or usage within one of the Matlab m-functions installed with Matlab (the latter being the usual case). None of these functions is officially supported by MathWorks. MEX [3] is an important source for such functions.
  • Semi-documented functions [4]
    Matlab functionality which exists in Matlab m-functions installed with Matlab, but have their main comment separated from the H1 comment line, thereby hiding it from normal view (via Matlab’s help function). The H1 comment line itself is simply a standard warning that this function is not officially supported and may change in some future version. To see the actual help comment, simply edit the function (using Matlab’s edit function or any text editor) and place a comment sign (%) at the empty line between the H1 comment and the actual help section. The entire help section will then onward be visible via the help function:

            function [tree, container] = uitree(varargin)
            % WARNING: This feature is not supported in MATLAB
            % and the API and functionality may change in a future release.
    fix =>  %
            % UITREE creates a uitree component with hierarchical data in a figure window.
            %   UITREE creates an empty uitree object with default property values in
            %   a figure window.
            %...
    

    These functions are not documented in the full documentation (via Matlab’s doc function, or online). The odd thing is that some of these functions may appear in the category help output (for example, help(‘uitools’)), and in some cases may even have a fully-visible help section (e.g., help(‘setptr’)), but do not have any online help documentation (docsearch(‘setptr’) fails, and doc(‘setptr’) simply displays the readable help text).
    All these functions are officially unsupported by MathWorks, even when having a readable help section. The rule of thumb appears to be that a Matlab function is supported only if it has online documentation. Note, however, that in some rare cases a documentation discrepancy may be due to a MathWorks documentation error, not to unsupportability…

  • Helper functions [2]
    Many fully-supported Matlab functions use helper functions that have a specific use in the main (documented) function(s). Often, these helper functions are tightly-coupled to their documented parents and are useless as stand-alone functions. But quite a few of them have quite useful stand-alone use, as I’ve already shown in some past articles.
  • Undocumented features [5] and properties [6]
    Features of otherwise-documented Matlab functions, which appear nowhere in the official documentation. You guessed it – these are also not supported by MathWorks… Like undocumented functions, you can only infer such features by the occasional CSSM post or a reference somewhere in Matlab’s m-code.
  • Semi-documented features [7]
    Features of otherwise-documented Matlab functions, which are documented in a separate section beneath the main help section, and nowhere else (not in the full doc not the online documentation). If you did not know in advance that these features existed, you could only learn of them by manually looking at Matlab’s m-files (which is what I do in most cases…).
  • Undocumented properties [6]
    Many Matlab objects have internal properties, which can be retrieved (via Matlab’s get function) and/or set (via the set function) programmatically. All these properties are fully documented. Many objects also possess hidden properties, some of which are very interesting and useful, but which are undocumented and (oh yes) unsupported. Like undocumented features, they can only be inferred from CSSM or existing code. In a recent article [8] I described my getundoc utility, which lists these undocumented properties of specified objects.
  • Internal Matlab classes [9]
    Matlab uses a vast array of specialized Java classes to handle everything from algorithms to GUI. These classes are (of course) undocumented/unsupported. They can often be accessed directly from the Matlab Command Window or user m-files. GUI classes can be inferred by inspecting the figure frame’s Java components, and non-GUI classes can often be inferred from references in Matlab’s m-files.
  • Matlab-Java integration [10]
    Matlab’s GUI interface, as well as the Java-to-Matlab interface (JMI) is fully undocumented and unsupported. In addition to JMI, there are other mechanisms to run Matlab code from within Java (namely JMI, COM and DDE) – these are all unsupported and by-and-large undocumented.
  • Matlab’s UDD mechanism [11]
    UDD (Unified Data Definition?) is used extensively in Matlab as the internal object-oriented mechanism for describing object properties and functionalities. We can use UDD for a wide variety of uses. UDD was described in a series of articles here in early 2011.

Next week I will list the reasons that cause MathWorks to decide whether a particular feature or property should be documented or not.

Categories: High risk of breaking in future versions, Java, Low risk of breaking in future versions, Medium risk of breaking in future versions, Semi-documented feature, Semi-documented function, Undocumented feature, Undocumented function


Article printed from Undocumented Matlab: https://undocumentedmatlab.com

URL to article: https://undocumentedmatlab.com/articles/types-of-undocumented-matlab-aspects

URLs in this post:

[1] asked: http://undocumentedmatlab.com/blog/guide-customization/#comment-61578

[2] Undocumented functions: http://undocumentedmatlab.com/blog/tag/undocumented-function/

[3] MEX: http://undocumentedmatlab.com/blog/category/mex/

[4] Semi-documented functions: http://undocumentedmatlab.com/blog/tag/semi-documented-function/

[5] Undocumented features: http://undocumentedmatlab.com/blog/tag/undocumented-feature/

[6] properties: http://undocumentedmatlab.com/blog/tag/undocumented-property/

[7] Semi-documented features: http://undocumentedmatlab.com/blog/tag/semi-documented-feature/

[8] article: http://undocumentedmatlab.com/blog/getundoc-get-undocumented-object-properties/

[9] Internal Matlab classes: http://undocumentedmatlab.com/blog/tag/internal-component/

[10] Matlab-Java integration: http://undocumentedmatlab.com/blog/tag/JMI

[11] Matlab’s UDD mechanism: http://undocumentedmatlab.com/?s=UDD

[12] Reasons for undocumented Matlab aspects : https://undocumentedmatlab.com/articles/reasons-for-undocumented-matlab-aspects

[13] Undocumented plot marker types : https://undocumentedmatlab.com/articles/undocumented-plot-marker-types

[14] Setting class property types – take 2 : https://undocumentedmatlab.com/articles/setting-class-property-types-2

[15] Setting class property types : https://undocumentedmatlab.com/articles/setting-class-property-types

[16] uiundo – Matlab's undocumented undo/redo manager : https://undocumentedmatlab.com/articles/uiundo-matlab-undocumented-undo-redo-manager

[17] Undocumented Matlab MEX API : https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api

Copyright © Yair Altman - Undocumented Matlab. All rights reserved.