<?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: Additional license data	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/additional-license-data/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/additional-license-data?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=additional-license-data</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Tue, 06 Feb 2018 17:00:27 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.3</generator>
	<item>
		<title>
		By: Andrew		</title>
		<link>https://undocumentedmatlab.com/articles/additional-license-data#comment-418952</link>

		<dc:creator><![CDATA[Andrew]]></dc:creator>
		<pubDate>Tue, 06 Feb 2018 17:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6852#comment-418952</guid>

					<description><![CDATA[Is there any way to return a floating toolbox license without closing the Matlab session?  Its not uncommon for me to find that somewhere in my code base I accessed an obscure toolbox which another user now wants to use.  At present the only way to that I know of to release the license is to stop what I am doing and shut down Matlab.]]></description>
			<content:encoded><![CDATA[<p>Is there any way to return a floating toolbox license without closing the Matlab session?  Its not uncommon for me to find that somewhere in my code base I accessed an obscure toolbox which another user now wants to use.  At present the only way to that I know of to release the license is to stop what I am doing and shut down Matlab.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/additional-license-data#comment-400481</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 17 Feb 2017 07:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6852#comment-400481</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/additional-license-data#comment-400466&quot;&gt;Brad Stiritz&lt;/a&gt;.

@Brad - This is the graphics package which is part of the &lt;a href=&quot;https://github.com/tminka/lightspeed/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Lightspeed toolbox&lt;/a&gt; by &lt;a href=&quot;https://tminka.github.io&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Tom Minka&lt;/a&gt;.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/additional-license-data#comment-400466">Brad Stiritz</a>.</p>
<p>@Brad &#8211; This is the graphics package which is part of the <a href="https://github.com/tminka/lightspeed/" target="_blank" rel="nofollow">Lightspeed toolbox</a> by <a href="https://tminka.github.io" target="_blank" rel="nofollow">Tom Minka</a>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brad Stiritz		</title>
		<link>https://undocumentedmatlab.com/articles/additional-license-data#comment-400466</link>

		<dc:creator><![CDATA[Brad Stiritz]]></dc:creator>
		<pubDate>Fri, 17 Feb 2017 03:17:15 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6852#comment-400466</guid>

					<description><![CDATA[Hi Yair,

I noticed &quot;Statistical Graphics Toolbox&quot; in your version listing. What is that, if I may ask, please? I couldn&#039;t find any info on my own. Thanks in advance.]]></description>
			<content:encoded><![CDATA[<p>Hi Yair,</p>
<p>I noticed &#8220;Statistical Graphics Toolbox&#8221; in your version listing. What is that, if I may ask, please? I couldn&#8217;t find any info on my own. Thanks in advance.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Collin		</title>
		<link>https://undocumentedmatlab.com/articles/additional-license-data#comment-400360</link>

		<dc:creator><![CDATA[Collin]]></dc:creator>
		<pubDate>Thu, 16 Feb 2017 02:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6852#comment-400360</guid>

					<description><![CDATA[This may get you what you want

&lt;pre lang=&quot;matlab&quot;&gt;
function out = getInstalled()
    % Problem with the support_packages implementor
    knowGoodTypes = {&#039;toolbox&#039;,&#039;app&#039;,&#039;product&#039;,&#039;zip&#039;};
    out = {};
    k = 1;

    % Get implementors
    jImplementors = com.mathworks.addons_common.AddonManagerFactory.getImplementors();
    pause(0.5);

    iter = jImplementors.listIterator;
    while iter.hasNext
        jImp = iter.next;
        type = char(jImp.getAddonTypeServiced);
        if ismember(type, knowGoodTypes)
            try
                jInstalledList = jImp.getInstalled;
                lenInstalled = length(jInstalledList);
                for itr = 1 : lenInstalled
                    jInstalled = jInstalledList(itr);
                    itype = char(jInstalled.getInstalledAddOnsMetadataToBeSentToManager.getDisplayType);
                    iname = char(jInstalled.getName);
                    iver =  char(jInstalled.getVersion);
                    idate = char(jInstalled.getInstalledDate.toString);
                    out{k,1} = [itype,&#039; : &#039;,iname,&#039; &#039;, iver,&#039; &#039;, idate];
                    k = k+1;
                end
            catch
            end
        end
    end

end
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>This may get you what you want</p>
<pre lang="matlab">
function out = getInstalled()
    % Problem with the support_packages implementor
    knowGoodTypes = {'toolbox','app','product','zip'};
    out = {};
    k = 1;

    % Get implementors
    jImplementors = com.mathworks.addons_common.AddonManagerFactory.getImplementors();
    pause(0.5);

    iter = jImplementors.listIterator;
    while iter.hasNext
        jImp = iter.next;
        type = char(jImp.getAddonTypeServiced);
        if ismember(type, knowGoodTypes)
            try
                jInstalledList = jImp.getInstalled;
                lenInstalled = length(jInstalledList);
                for itr = 1 : lenInstalled
                    jInstalled = jInstalledList(itr);
                    itype = char(jInstalled.getInstalledAddOnsMetadataToBeSentToManager.getDisplayType);
                    iname = char(jInstalled.getName);
                    iver =  char(jInstalled.getVersion);
                    idate = char(jInstalled.getInstalledDate.toString);
                    out{k,1} = [itype,' : ',iname,' ', iver,' ', idate];
                    k = k+1;
                end
            catch
            end
        end
    end

end
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/additional-license-data#comment-400320</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Wed, 15 Feb 2017 18:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6852#comment-400320</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/additional-license-data#comment-400318&quot;&gt;Mikhail&lt;/a&gt;.

@Mikhail - yes, but (alas) without expiration dates...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/additional-license-data#comment-400318">Mikhail</a>.</p>
<p>@Mikhail &#8211; yes, but (alas) without expiration dates&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mikhail		</title>
		<link>https://undocumentedmatlab.com/articles/additional-license-data#comment-400318</link>

		<dc:creator><![CDATA[Mikhail]]></dc:creator>
		<pubDate>Wed, 15 Feb 2017 18:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6852#comment-400318</guid>

					<description><![CDATA[Try &quot;&lt;code&gt;ver -support&lt;/code&gt;&quot; to get a listing with license numbers for each toolbox.]]></description>
			<content:encoded><![CDATA[<p>Try &#8220;<code>ver -support</code>&#8221; to get a listing with license numbers for each toolbox.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
