<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>NMath release Archives - CenterSpace</title>
	<atom:link href="https://www.centerspace.net/tag/nmath-release/feed" rel="self" type="application/rss+xml" />
	<link>https://www.centerspace.net/tag/nmath-release</link>
	<description>.NET numerical class libraries</description>
	<lastBuildDate>Tue, 07 Feb 2023 21:24:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>
<site xmlns="com-wordpress:feed-additions:1">104092929</site>	<item>
		<title>July Release of NMath and NMath Stats</title>
		<link>https://www.centerspace.net/july-release-of-nmath-and-nmath-stats</link>
					<comments>https://www.centerspace.net/july-release-of-nmath-and-nmath-stats#comments</comments>
		
		<dc:creator><![CDATA[Paul Shirkey]]></dc:creator>
		<pubDate>Tue, 08 Jun 2010 23:24:36 +0000</pubDate>
				<category><![CDATA[CenterSpace]]></category>
		<category><![CDATA[NMath]]></category>
		<category><![CDATA[NMath Stats]]></category>
		<category><![CDATA[.NET math library]]></category>
		<category><![CDATA[C# math library]]></category>
		<category><![CDATA[NMath release]]></category>
		<category><![CDATA[NMath Stats release]]></category>
		<guid isPermaLink="false">http://www.centerspace.net/blog/?p=2219</guid>

					<description><![CDATA[<p><img src="https://www.centerspace.net/blog/wp-content/uploads/2010/06/centerspace-software-logo.png" alt="CenterSpace" title="CenterSpace Software" class="excerpt" />We are currently working hard on our upcoming July release of NMath and NMath Stats.  This release will add many new features from <em>Runge-Kutta</em> to automatic <em>Peak Finding</em> algorithms as well as address our most frequent support requests.  Developers using our math libraries currently will find the new release build-compatible with the prior release.  Upgrades are provided free of charge to customers with current annual maintenance contracts. </p>
<p>The post <a rel="nofollow" href="https://www.centerspace.net/july-release-of-nmath-and-nmath-stats">July Release of NMath and NMath Stats</a> appeared first on <a rel="nofollow" href="https://www.centerspace.net">CenterSpace</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We are currently working hard on our upcoming July release of our NMath and NMath Stats C# math libraries.  This release will add many new features from <em>Runge-Kutta</em> to automatic <em>Peak Finding</em> algorithms as well as address our most frequent support requests.  Developers using our math libraries currently will find the new release build-compatible with the prior release.  Upgrades are provided free of charge to customers with current annual maintenance contracts.   Maintenance contracts are available through our <a href="/order/" target="_blank">webstore</a>.</p>
<h3>Pure C#</h3>
<p>Both libraries are now supported by a new pure C# math kernel doing away with our old C++ kernel.  Because we are now a pure .NET assembly, deployment of NMath based applications is simplified by eliminating the Microsoft C++ runtime library dependency.  As with all releases we will be posting our updated performance benchmarks at the time of the release.</p>
<h3>Full Control</h3>
<p>Additionally, our libraries have been re-architected to dynamically link to both native numerical libraries and ( and perhaps more importantly for our customers ) the Intel OMP threading library (<em>libiomp.dll</em>) .  This means that our customers will have complete control over the threading library. In the past, we statically linked in OMP. Now, we are picking up OMP dynamically and thereby avoid collisions between statically and dynamically linked OMP libraries.  In a nutshell, NMath will now play more nicely with libraries from other vendors.</p>
<h3>New Features</h3>
<p>Now for the fun stuff.  The table below summarized the new features in <em>NMath 4.1</em> and <em>NMath Stats 3.2</em>.</p>
<table>
<tbody>
<tr>
<th> Product</th>
<th> Feature</th>
<th align="center"> Summary</th>
</tr>
<tr>
<td>NMath 4.1</td>
<td style="font-weight: bold;">Savitzky-Golay derivatives</td>
<td>Class generates correlation coefficients to compute the smoothed Savizky-Golay derivatives of sampled data.</td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Savitzky-Golay smoothing</td>
<td><a href="/savitzky-golay-smoothing/"> See blog article on SG smoothing </a></td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Peak Finding</td>
<td>Class finds peaks in sampled data using Savitzky-Golay smoothed polynomials and their derivatives.</td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Runge-Kutta ODE solver</td>
<td>Class for solving ODE&#8217;s</td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Bounded function fitting</td>
<td>Class for fitting general nonlinear models with bounds on the parameters. Also see this <a href="/non-linear-curve-fitting/">blog article</a> for code examples of bounded nonlinear curving fitting.</td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Correlated random number generators</td>
<td>Class creates streams of induced correlated random numbers typically for simulation studies using Monte Carlo.</td>
</tr>
<tr>
<td>NMath Stats 3.2</td>
<td style="font-weight: bold;">Johnson System of distributions</td>
<td>The Johnson system of distributions is based on three possible transformations of a normal distribution&#8211;exponential, logistic, and hyperbolic sine&#8211;plus the identity transformation:</p>
<p>X = xi + (lambda * T((z &#8211; gamma) / delta))</p>
<p>where z is a standard normal random variable, xi and lambda are shape parameters, delta is a scale parameter, gamma is a location parameter, and T is the transformation.</td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Kruskal-Wallis rank sum test</td>
<td>The Kruskal-Wallis rank sum test is a non-parametric test for equality of population medians among groups. It is a non-parametric version of the classical one-way ANOVA.</td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Regression statistics for PolynomialLeastSquares</td>
<td>[see below]</td>
</tr>
<tr>
<td></td>
<td style="font-weight: bold;">Regression statistics for OneVariableFunctionFitter</td>
<td>Class provides a variety of regression statistics including the residual sum of squares, R squared, adjusted R squared, F statistic, and others.</td>
</tr>
</tbody>
</table>
<p>I hope you find these new additions to the library useful in your application work.  If you are looking for something specific that isn&#8217;t currently supported in our library, please <a href="mailto: support@centerspace.net">contact us</a>.  We build custom numeric classes for existing and new customers on a regular basis.</p>
<p>Happy Computing,<br />
<em> Paul </em></p>
<p>
<b>Update:</b> In the <a href="/new-versions-of-nmath-libraries-released/">final release</a>, NMath still has a dependency on the Visual C++ 2008 runtime (msvcr90.dll)</p>
<p>The post <a rel="nofollow" href="https://www.centerspace.net/july-release-of-nmath-and-nmath-stats">July Release of NMath and NMath Stats</a> appeared first on <a rel="nofollow" href="https://www.centerspace.net">CenterSpace</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.centerspace.net/july-release-of-nmath-and-nmath-stats/feed</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2219</post-id>	</item>
		<item>
		<title>NMath Upgrades Available</title>
		<link>https://www.centerspace.net/nmath-upgrades-available</link>
					<comments>https://www.centerspace.net/nmath-upgrades-available#respond</comments>
		
		<dc:creator><![CDATA[Ken Baldwin]]></dc:creator>
		<pubDate>Tue, 14 Apr 2009 15:37:29 +0000</pubDate>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[NMath]]></category>
		<category><![CDATA[NMath 4.1]]></category>
		<category><![CDATA[NMath release]]></category>
		<category><![CDATA[NMath Stats 3.2]]></category>
		<category><![CDATA[NMath Stats release]]></category>
		<guid isPermaLink="false">http://www.centerspace.net/blog/?p=98</guid>

					<description><![CDATA[<p>We&#8217;re pleased to announce new versions of the NMath libraries &#8211; NMath 4.1, and NMath Stats 3.2. Added functionality includes&#8230; NMath Core Custom debug visualizers for matrix and vector classes. Improved performance on multi-core computers. and more&#8230; NMath Matrix General sparse matrix classes and factorizations Weighted least squares (WLS) by complete orthogonal (CO) decomposition. Iteratively [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.centerspace.net/nmath-upgrades-available">NMath Upgrades Available</a> appeared first on <a rel="nofollow" href="https://www.centerspace.net">CenterSpace</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We&#8217;re pleased to announce new versions of the NMath libraries &#8211; NMath 4.1, and NMath Stats 3.2.</p>
<p>Added functionality includes&#8230;</p>
<p><strong>NMath Core</strong></p>
<ul>
<li>Custom debug visualizers for matrix and vector classes.</li>
<li>Improved performance on multi-core computers.</li>
<li>and <a href="https://www.centerspace.net/doc/NMath/changelog.txt">more</a>&#8230;</li>
</ul>
<p><strong>NMath Matrix</strong></p>
<ul>
<li>General sparse matrix classes and factorizations</li>
<li>Weighted least squares (WLS) by complete orthogonal (CO) decomposition.</li>
<li>Iteratively reweighted least squares (IRLS)</li>
<li>and <a href="https://www.centerspace.net/doc/NMath/changelog.txt">more</a>&#8230;</li>
</ul>
<p><strong>NMath Stats</strong></p>
<ul>
<li>Data clustering via nonnegative matrix factorization (NMF).</li>
<li>Custom debug visualizer for DataFrame.</li>
<li>and <a href="https://www.centerspace.net/doc/NMath/changelog.txt">more</a>&#8230;</li>
</ul>
<p><strong>NMath Analysis</strong></p>
<ul>
<li>Nonlinear least squares minimization using the Trust-Region method, a variant of the Levenberg-Marquardt method.</li>
<li>Curve and surface fitting by nonlinear least squares.</li>
<li>and <a href="https://www.centerspace.net/doc/NMath/changelog.txt">more</a>&#8230;</li>
</ul>
<p>Upgrades are provided free of charge to customers with current annual maintenance contracts. To request an upgrade, please contact <a href="mailto:sales@centerspace.net">sales@centerspace.net</a>. Maintenance contracts are available through our <a href="/order/">webstore</a>.</p>
<p>The post <a rel="nofollow" href="https://www.centerspace.net/nmath-upgrades-available">NMath Upgrades Available</a> appeared first on <a rel="nofollow" href="https://www.centerspace.net">CenterSpace</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.centerspace.net/nmath-upgrades-available/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">98</post-id>	</item>
	</channel>
</rss>
