<?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: Undocumented Matlab MEX API	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=undocumented-matlab-mex-api</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Sun, 22 Jan 2017 22:04:49 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.3</generator>
	<item>
		<title>
		By: Cris		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-398943</link>

		<dc:creator><![CDATA[Cris]]></dc:creator>
		<pubDate>Sun, 22 Jan 2017 22:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=4029#comment-398943</guid>

					<description><![CDATA[Correct signatures for these two functions are:
&lt;pre lang=&quot;cpp&quot;&gt;
extern mxArray* mxGetPropertyShared( mxArray const* pa, mwIndex index, char const* propname );
extern void mxSetPropertyShared( mxArray* pa, mwIndex index, char const* propname, mxArray const* value );
&lt;/pre&gt;
(Note that &lt;code&gt;mwIndex&lt;/code&gt; has a different basic type depending on the architecture.)

Noteworthy is that the MATLAB code for the property setter and getter methods will be executed here, so these functions are not necessarily quick. It is sad that we cannot create class methods as MEX-files.]]></description>
			<content:encoded><![CDATA[<p>Correct signatures for these two functions are:</p>
<pre lang="cpp">
extern mxArray* mxGetPropertyShared( mxArray const* pa, mwIndex index, char const* propname );
extern void mxSetPropertyShared( mxArray* pa, mwIndex index, char const* propname, mxArray const* value );
</pre>
<p>(Note that <code>mwIndex</code> has a different basic type depending on the architecture.)</p>
<p>Noteworthy is that the MATLAB code for the property setter and getter methods will be executed here, so these functions are not necessarily quick. It is sad that we cannot create class methods as MEX-files.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Chappelow		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-340877</link>

		<dc:creator><![CDATA[Jonathan Chappelow]]></dc:creator>
		<pubDate>Wed, 10 Dec 2014 23:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=4029#comment-340877</guid>

					<description><![CDATA[Interesting news from the R2015a release notes:  mxCreateUninitNumericMatrix and  mxCreateUninitNumericArray are now *documented* functions.]]></description>
			<content:encoded><![CDATA[<p>Interesting news from the R2015a release notes:  mxCreateUninitNumericMatrix and  mxCreateUninitNumericArray are now *documented* functions.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-330484</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Sun, 31 Aug 2014 21:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=4029#comment-330484</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-330468&quot;&gt;Ilan Bar&lt;/a&gt;.

@Ilan - I don&#039;t have access to Linux at the moment so I&#039;m afraid someone else would need to answer this...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-330468">Ilan Bar</a>.</p>
<p>@Ilan &#8211; I don&#8217;t have access to Linux at the moment so I&#8217;m afraid someone else would need to answer this&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ilan Bar		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-330468</link>

		<dc:creator><![CDATA[Ilan Bar]]></dc:creator>
		<pubDate>Sun, 31 Aug 2014 10:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=4029#comment-330468</guid>

					<description><![CDATA[Yair,
mxGetPropertyShared is working great on Windows. Do you know whether there is a way to use it on LINUX as well ? The generic solution solution by James Tursa works consisting of mxGetPropertyPtr works for LINUX but slows processing speed if called many times.

Best Regards,
Ilan.]]></description>
			<content:encoded><![CDATA[<p>Yair,<br />
mxGetPropertyShared is working great on Windows. Do you know whether there is a way to use it on LINUX as well ? The generic solution solution by James Tursa works consisting of mxGetPropertyPtr works for LINUX but slows processing speed if called many times.</p>
<p>Best Regards,<br />
Ilan.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Drazick		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-229913</link>

		<dc:creator><![CDATA[Drazick]]></dc:creator>
		<pubDate>Fri, 26 Jul 2013 09:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=4029#comment-229913</guid>

					<description><![CDATA[Would you open a Google+ Page?
It will make following you much easier.

Thanks.]]></description>
			<content:encoded><![CDATA[<p>Would you open a Google+ Page?<br />
It will make following you much easier.</p>
<p>Thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Andrew		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-matlab-mex-api#comment-229774</link>

		<dc:creator><![CDATA[Andrew]]></dc:creator>
		<pubDate>Thu, 25 Jul 2013 22:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=4029#comment-229774</guid>

					<description><![CDATA[Thank you. Very interesting. I don&#039;t know why some of these aren&#039;t documented. However, &lt;code&gt;mxIsInf&lt;/code&gt; is documented: http://www.mathworks.com/help/matlab/apiref/mxisinf.html]]></description>
			<content:encoded><![CDATA[<p>Thank you. Very interesting. I don&#8217;t know why some of these aren&#8217;t documented. However, <code>mxIsInf</code> is documented: <a href="http://www.mathworks.com/help/matlab/apiref/mxisinf.html" rel="nofollow ugc">http://www.mathworks.com/help/matlab/apiref/mxisinf.html</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
