<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>mathnetnumerics Releases Rss Feed</title><link>http://mathnetnumerics.codeplex.com/Release/ProjectReleases.aspx</link><description>mathnetnumerics Releases Rss Description</description><item><title>Updated Release: Math.NET Numerics v2.5.0 (Apr 14, 2013)</title><link>https://mathnetnumerics.codeplex.com/releases/view/105071</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Potentially Breaking Changes:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Despite semver this release contains two changes that may break code but without triggering a major version number change. The changes fix semantic bugs and a major usability issue without changing the formal API itself. Most users are not expected to be affected negatively. Nevertheless, this is an exceptional case and we try hard to avoid such changes in the future.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Statistics: Empty statistics now return NaN instead of either 0 or throwing an exception. &lt;i&gt;This may break code in case you relied upon the previous unusual and inconsistent behavior.&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;Linear Algebra: More reasonable ToString behavior for matrices and vectors. &lt;i&gt;This may break code if you relied upon ToString to export your full data to text form intended to be parsed again later. Note that the classes in the MathNet.Numerics.IO library are more appropriate for storing and loading data.&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Statistics:&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;More consistent behavior for empty and single-element data sets: Min, Max, Mean, Variance, Standard Deviation etc. no longer throw exceptions if the data set is empty but instead return NaN. Variance and Standard Deviation will also return NaN if the set contains only a single entry. Population Variance and Population Standard Deviation will return 0 in this case.&lt;/li&gt;
&lt;li&gt;Reworked order statistics (Quantile, Quartile, Percentile, IQR, Fivenum, etc.), now much easier to use and supporting compatibility with all 9 R-types, Excel and Mathematica. The obsolete Percentile class now leverages the new order statistics, fixing a range check bug as side effect.&lt;/li&gt;
&lt;li&gt;New Hybrid Monte Carlo sampler for multivariate distributions.&lt;/li&gt;
&lt;li&gt;New financial statistics: absolute risk and return measures.&lt;/li&gt;
&lt;li&gt;Explicit statistics for sorted arrays, unsorted arrays and sequences/streams. Faster algorithms on sorted data, also avoids multiple enumerations.&lt;/li&gt;
&lt;li&gt;Some statistics like Quantile or empirical inverse CDF can optionally return a parametric function when multiple evaluations are needed, like for plotting.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Linear Algebra:&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;More reasonable ToString behavior for matrices and vectors: `ToString` methods no longer render the whole structure to a string for large data, among others because they used to wreak havoc in debugging and interactive scenarios like F# FSI. Instead, ToString now only renders an excerpt of the data, together with a line about dimension, type and in case of sparse data a sparseness indicator. The intention is to give a good idea about the data in a visually useful way. How much data is shown can be adjusted in the Control class. See also ToTypeString and ToVector/MatrixString.&lt;/li&gt;
&lt;li&gt;Performance: reworked and tuned common parallelization. Some operations are up to 3 magnitudes faster in some extreme cases. Replaced copy loops with native routines. More algorithms are storage-aware (and should thus perform better especially on sparse data).&lt;/li&gt;
&lt;li&gt;Fixed range checks in the Thin-QR decomposition.&lt;/li&gt;
&lt;li&gt;Fixed bug in Gram Schmidt for solving tall matrices.&lt;/li&gt;
&lt;li&gt;Vectors now implement the BCL IList interfaces (fixed-length) for better integration with existing .Net code.&lt;/li&gt;
&lt;li&gt;Matrix/Vector parsing has been updated to be able to parse the new visual format as well (see ToMatrixString).&lt;/li&gt;
&lt;li&gt;DebuggerDisplay attributes for matrices and vectors.&lt;/li&gt;
&lt;li&gt;Map/IndexedMap combinators with storage-aware and partially parallelized implementations for both dense and sparse data.&lt;/li&gt;
&lt;li&gt;Reworked Matrix/Vector construction from arrays, enumerables, indexed enumerables, nested enumerables or by providing an init function/lambda. Non-obsolete constructors now always use the raw data array directly without copying, while static functions always return a matrix/vector independent of the provided data source.&lt;/li&gt;
&lt;li&gt;F#: Improved extensions for matrix and vector construction: create, zeroCreate, randomCreate, init, ofArray2, ofRows/ofRowsList, ofColumns/ofColumnsList, ofSeqi/Listi (indexed). Storage-aware for performance.&lt;/li&gt;
&lt;li&gt;F#: Updated map/mapi and other combinators to leverage core implementation, added -nz variants where zero-values may be skipped (relevant mostly for sparse matrices).&lt;/li&gt;
&lt;li&gt;F#: Idiomatic slice setters for sub-matrices and sub-vectors&lt;/li&gt;
&lt;li&gt;F#: More examples for matrix/vector creation and linear regression in the F# Sample-package.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Misc:&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Control: Simpler usage with new static ConfigureAuto and ConfigureSingleThread methods. Resolved misleading configuration logic and naming around disabling parallelization.&lt;/li&gt;
&lt;li&gt;Control: New settings for linear algebra ToString behavior.&lt;/li&gt;
&lt;li&gt;Fixed range check in the Xor-shift pseudo-RNG.&lt;/li&gt;
&lt;li&gt;Parallelization: Reworked our common logic to avoid expensive lambda calls in inner loops. Tunable.&lt;/li&gt;
&lt;li&gt;F#: Examples (and thus the NuGet Sample package) are now F# scripts prepared for experimenting interactively in FSI, instead of normal F# files. Tries to get the assembly references right for most users, both within the Math.NET Numerics solution and the NuGet package.&lt;/li&gt;
&lt;li&gt;Various minor improvements on consistency, performance, tests, xml docs, obsolete attributes, redundant code, argument checks, resources, cleanup, nuget, etc.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Code samples:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Sample &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp.Sample &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Sun, 14 Apr 2013 18:59:20 GMT</pubDate><guid isPermaLink="false">Updated Release: Math.NET Numerics v2.5.0 (Apr 14, 2013) 20130414065920P</guid></item><item><title>Released: Math.NET Numerics v2.5.0 (Apr 14, 2013)</title><link>http://mathnetnumerics.codeplex.com/releases/view/105071</link><description>
&lt;div class="wikidoc"&gt;&lt;b&gt;Potentially Breaking Changes:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Despite semver this release contains two changes that may break code but without triggering a major version number change. The changes fix semantic bugs and a major usability issue without changing the formal API itself. Most users are not expected to be affected
 negatively. Nevertheless, this is an exceptional case and we try hard to avoid such changes in the future.&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;Statistics: Empty statistics now return NaN instead of either 0 or throwing an exception.
&lt;i&gt;This may break code in case you relied upon the previous unusual and inconsistent behavior.&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Linear Algebra: More reasonable ToString behavior for matrices and vectors. &lt;i&gt;
This may break code if you relied upon ToString to export your full data to text form intended to be parsed again later. Note that the classes in the MathNet.Numerics.IO library are more appropriate for storing and loading data.&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
&lt;b&gt;Statistics:&lt;/b&gt;&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;More consistent behavior for empty and single-element data sets: Min, Max, Mean, Variance, Standard Deviation etc. no longer throw exceptions if the data set is empty but instead return NaN. Variance and Standard Deviation will also return NaN if the set
 contains only a single entry. Population Variance and Population Standard Deviation will return 0 in this case.
&lt;/li&gt;&lt;li&gt;Reworked order statistics (Quantile, Quartile, Percentile, IQR, Fivenum, etc.), now much easier to use and supporting compatibility with all 9 R-types, Excel and Mathematica. The obsolete Percentile class now leverages the new order statistics, fixing a
 range check bug as side effect. &lt;/li&gt;&lt;li&gt;New Hybrid Monte Carlo sampler for multivariate distributions. &lt;/li&gt;&lt;li&gt;New financial statistics: absolute risk and return measures. &lt;/li&gt;&lt;li&gt;Explicit statistics for sorted arrays, unsorted arrays and sequences/streams. Faster algorithms on sorted data, also avoids multiple enumerations.
&lt;/li&gt;&lt;li&gt;Some statistics like Quantile or empirical inverse CDF can optionally return a parametric function when multiple evaluations are needed, like for plotting.&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
&lt;b&gt;Linear Algebra:&lt;/b&gt;&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;More reasonable ToString behavior for matrices and vectors: `ToString` methods no longer render the whole structure to a string for large data, among others because they used to wreak havoc in debugging and interactive scenarios like F# FSI. Instead, ToString
 now only renders an excerpt of the data, together with a line about dimension, type and in case of sparse data a sparseness indicator. The intention is to give a good idea about the data in a visually useful way. How much data is shown can be adjusted in the
 Control class. See also ToTypeString and ToVector/MatrixString. &lt;/li&gt;&lt;li&gt;Performance: reworked and tuned common parallelization. Some operations are up to 3 magnitudes faster in some extreme cases. Replaced copy loops with native routines. More algorithms are storage-aware (and should thus perform better especially on sparse
 data). &lt;/li&gt;&lt;li&gt;Fixed range checks in the Thin-QR decomposition. &lt;/li&gt;&lt;li&gt;Fixed bug in Gram Schmidt for solving tall matrices. &lt;/li&gt;&lt;li&gt;Vectors now implement the BCL IList interfaces (fixed-length) for better integration with existing .Net code.
&lt;/li&gt;&lt;li&gt;Matrix/Vector parsing has been updated to be able to parse the new visual format as well (see ToMatrixString).
&lt;/li&gt;&lt;li&gt;DebuggerDisplay attributes for matrices and vectors. &lt;/li&gt;&lt;li&gt;Map/IndexedMap combinators with storage-aware and partially parallelized implementations for both dense and sparse data.
&lt;/li&gt;&lt;li&gt;Reworked Matrix/Vector construction from arrays, enumerables, indexed enumerables, nested enumerables or by providing an init function/lambda. Non-obsolete constructors now always use the raw data array directly without copying, while static functions always
 return a matrix/vector independent of the provided data source. &lt;/li&gt;&lt;li&gt;F#: Improved extensions for matrix and vector construction: create, zeroCreate, randomCreate, init, ofArray2, ofRows/ofRowsList, ofColumns/ofColumnsList, ofSeqi/Listi (indexed). Storage-aware for performance.
&lt;/li&gt;&lt;li&gt;F#: Updated map/mapi and other combinators to leverage core implementation, added -nz variants where zero-values may be skipped (relevant mostly for sparse matrices).
&lt;/li&gt;&lt;li&gt;F#: Idiomatic slice setters for sub-matrices and sub-vectors &lt;/li&gt;&lt;li&gt;F#: More examples for matrix/vector creation and linear regression in the F# Sample-package.&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
&lt;b&gt;Misc:&lt;/b&gt;&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;Control: Simpler usage with new static ConfigureAuto and ConfigureSingleThread methods. Resolved misleading configuration logic and naming around disabling parallelization.
&lt;/li&gt;&lt;li&gt;Control: New settings for linear algebra ToString behavior. &lt;/li&gt;&lt;li&gt;Fixed range check in the Xor-shift pseudo-RNG. &lt;/li&gt;&lt;li&gt;Parallelization: Reworked our common logic to avoid expensive lambda calls in inner loops. Tunable.
&lt;/li&gt;&lt;li&gt;F#: Examples (and thus the NuGet Sample package) are now F# scripts prepared for experimenting interactively in FSI, instead of normal F# files. Tries to get the assembly references right for most users, both within the Math.NET Numerics solution and the
 NuGet package. &lt;/li&gt;&lt;li&gt;Various minor improvements on consistency, performance, tests, xml docs, obsolete attributes, redundant code, argument checks, resources, cleanup, nuget, etc.&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
Code samples:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Sample &lt;/span&gt;
&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp.Sample &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
If you absolutely require a signed library with a strong name:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Sun, 14 Apr 2013 18:59:20 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.5.0 (Apr 14, 2013) 20130414065920P</guid></item><item><title>Created Release: Math.NET Numerics v2.5.0 (Apr 14, 2013)</title><link>https://mathnetnumerics.codeplex.com/releases?ReleaseId=105071</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Potentially Breaking Changes:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Despite semver this release contains two changes that may break code but without triggering a major version number change. The changes fix semantic bugs and a major usability issue without changing the formal API itself. Most users are not expected to be affected negatively. Nevertheless, this is an exceptional case and we try hard to avoid such changes in the future.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Statistics: Empty statistics now return NaN instead of either 0 or throwing an exception. &lt;i&gt;This may break code in case you relied upon the previous unusual and inconsistent behavior.&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;Linear Algebra: More reasonable ToString behavior for matrices and vectors. &lt;i&gt;This may break code if you relied upon ToString to export your full data to text form intended to be parsed again later. Note that the classes in the MathNet.Numerics.IO library are more appropriate for storing and loading data.&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Statistics:&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;More consistent behavior for empty and single-element data sets: Min, Max, Mean, Variance, Standard Deviation etc. no longer throw exceptions if the data set is empty but instead return NaN. Variance and Standard Deviation will also return NaN if the set contains only a single entry. Population Variance and Population Standard Deviation will return 0 in this case.&lt;/li&gt;
&lt;li&gt;Reworked order statistics (Quantile, Quartile, Percentile, IQR, Fivenum, etc.), now much easier to use and supporting compatibility with all 9 R-types, Excel and Mathematica. The obsolete Percentile class now leverages the new order statistics, fixing a range check bug as side effect.&lt;/li&gt;
&lt;li&gt;New Hybrid Monte Carlo sampler for multivariate distributions.&lt;/li&gt;
&lt;li&gt;New financial statistics: absolute risk and return measures.&lt;/li&gt;
&lt;li&gt;Explicit statistics for sorted arrays, unsorted arrays and sequences/streams. Faster algorithms on sorted data, also avoids multiple enumerations.&lt;/li&gt;
&lt;li&gt;Some statistics like Quantile or empirical inverse CDF can optionally return a parametric function when multiple evaluations are needed, like for plotting.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Linear Algebra:&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;More reasonable ToString behavior for matrices and vectors: `ToString` methods no longer render the whole structure to a string for large data, among others because they used to wreak havoc in debugging and interactive scenarios like F# FSI. Instead, ToString now only renders an excerpt of the data, together with a line about dimension, type and in case of sparse data a sparseness indicator. The intention is to give a good idea about the data in a visually useful way. How much data is shown can be adjusted in the Control class. See also ToTypeString and ToVector/MatrixString.&lt;/li&gt;
&lt;li&gt;Performance: reworked and tuned common parallelization. Some operations are up to 3 magnitudes faster in some extreme cases. Replaced copy loops with native routines. More algorithms are storage-aware (and should thus perform better especially on sparse data).&lt;/li&gt;
&lt;li&gt;Fixed range checks in the Thin-QR decomposition.&lt;/li&gt;
&lt;li&gt;Fixed bug in Gram Schmidt for solving tall matrices.&lt;/li&gt;
&lt;li&gt;Vectors now implement the BCL IList interfaces (fixed-length) for better integration with existing .Net code.&lt;/li&gt;
&lt;li&gt;Matrix/Vector parsing has been updated to be able to parse the new visual format as well (see ToMatrixString).&lt;/li&gt;
&lt;li&gt;DebuggerDisplay attributes for matrices and vectors.&lt;/li&gt;
&lt;li&gt;Map/IndexedMap combinators with storage-aware and partially parallelized implementations for both dense and sparse data.&lt;/li&gt;
&lt;li&gt;Reworked Matrix/Vector construction from arrays, enumerables, indexed enumerables, nested enumerables or by providing an init function/lambda. Non-obsolete constructors now always use the raw data array directly without copying, while static functions always return a matrix/vector independent of the provided data source.&lt;/li&gt;
&lt;li&gt;F#: Improved extensions for matrix and vector construction: create, zeroCreate, randomCreate, init, ofArray2, ofRows/ofRowsList, ofColumns/ofSolumnsList, ofSeqi/Listi (indexed). Storage-aware for performance.&lt;/li&gt;
&lt;li&gt;F#: Updated map/mapi and other combinators to leverage core implementation, added -nz variants where zero-values may be skipped (relevant mostly for sparse matrices).&lt;/li&gt;
&lt;li&gt;F#: Idiomatic slice setters for sub-matrices and sub-vectors&lt;/li&gt;
&lt;li&gt;F#: More examples for matrix/vector creation and linear regression in the F# Sample-package.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Misc:&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Control: Simpler usage with new static ConfigureAuto and ConfigureSingleThread methods. Resolved misleading configuration logic and naming around disabling parallelization.&lt;/li&gt;
&lt;li&gt;Control: New settings for linear algebra ToString behavior.&lt;/li&gt;
&lt;li&gt;Fixed range check in the Xor-shift pseudo-RNG.&lt;/li&gt;
&lt;li&gt;Parallelization: Reworked our common logic to avoid expensive lambda calls in inner loops. Tunable.&lt;/li&gt;
&lt;li&gt;F#: Examples (and thus the NuGet Sample package) are now F# scripts prepared for experimenting interactively in FSI, instead of normal F# files. Tries to get the assembly references right for most users, both within the Math.NET Numerics solution and the NuGet package.&lt;/li&gt;
&lt;li&gt;Various minor improvements on consistency, performance, tests, xml docs, obsolete attributes, redundant code, argument checks, resources, cleanup, nuget, etc.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Code samples:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Sample &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp.Sample &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Sun, 14 Apr 2013 18:19:48 GMT</pubDate><guid isPermaLink="false">Created Release: Math.NET Numerics v2.5.0 (Apr 14, 2013) 20130414061948P</guid></item><item><title>Updated Release: Math.NET Numerics v2.4.0 (Feb 03, 2013)</title><link>https://mathnetnumerics.codeplex.com/releases/view/101319</link><description>&lt;div class="wikidoc"&gt;&lt;ul&gt;&lt;li&gt;Drops the dependency on the zlib library. We thus no longer have any dependencies on other packages.&lt;/li&gt;
&lt;li&gt;Adds Modified Bessel &amp;amp; Struve special functions&lt;/li&gt;
&lt;li&gt;Fixes a bug in our iterative kurtosis statistics formula&lt;/li&gt;&lt;/ul&gt;
Linear Algebra:
&lt;ul&gt;&lt;li&gt;Performance work, this time mostly around accessing matrix rows/columns as vectors. Opting out from targeted patching in our matrix and vector indexers to allow inlining.&lt;/li&gt;
&lt;li&gt;Fixes an issue around Thin-QR solve&lt;/li&gt;
&lt;li&gt;Simplifications around using native linear algebra providers (see &lt;a href="http://christoph.ruegg.name/blog/2013/2/3/mathnet-numerics-with-native-linear-algebra.html"&gt;Math.NET Numerics With Native Linear Algebra&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;
F#:
&lt;ul&gt;&lt;li&gt;Adds the BigRational module from the F# PowerPack, now to be maintained here instead.&lt;/li&gt;
&lt;li&gt;Better support for our Complex types (close to the F# PowerPack Complex type)&lt;/li&gt;&lt;/ul&gt;
Thanks a lot for all the contributions, notably from Marcus Cuda, Gustavo Guerra, Artyom Baranovskiy, Thomas Ibel and Wayne Wu.&lt;br /&gt;&lt;br /&gt;Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Sun, 03 Feb 2013 22:02:39 GMT</pubDate><guid isPermaLink="false">Updated Release: Math.NET Numerics v2.4.0 (Feb 03, 2013) 20130203100239P</guid></item><item><title>Released: Math.NET Numerics v2.4.0 (Feb 03, 2013)</title><link>http://mathnetnumerics.codeplex.com/releases/view/101319</link><description>
&lt;div class="wikidoc"&gt;
&lt;ul&gt;
&lt;li&gt;Drops the dependency on the zlib library. We thus no longer have any dependencies on other packages.
&lt;/li&gt;&lt;li&gt;Adds Modified Bessel &amp;amp; Struve special functions &lt;/li&gt;&lt;li&gt;Fixes a bug in our iterative kurtosis statistics formula&lt;/li&gt;&lt;/ul&gt;
Linear Algebra:
&lt;ul&gt;
&lt;li&gt;Performance work, this time mostly around accessing matrix rows/columns as vectors. Opting out from targeted patching in our matrix and vector indexers to allow inlining.
&lt;/li&gt;&lt;li&gt;Fixes an issue around Thin-QR solve &lt;/li&gt;&lt;li&gt;Simplifications around using native linear algebra providers (see &lt;a href="http://christoph.ruegg.name/blog/2013/2/3/mathnet-numerics-with-native-linear-algebra.html"&gt;
Math.NET Numerics With Native Linear Algebra&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;
F#:
&lt;ul&gt;
&lt;li&gt;Adds the BigRational module from the F# PowerPack, now to be maintained here instead.
&lt;/li&gt;&lt;li&gt;Better support for our Complex types (close to the F# PowerPack Complex type)&lt;/li&gt;&lt;/ul&gt;
Thanks a lot for all the contributions, notably from Marcus Cuda, Gustavo Guerra, Artyom Baranovskiy, Thomas Ibel and Wayne Wu.&lt;br&gt;
&lt;br&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
If you absolutely require a signed library with a strong name:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Sun, 03 Feb 2013 22:02:39 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.4.0 (Feb 03, 2013) 20130203100239P</guid></item><item><title>Created Release: Math.NET Numerics v2.4.0 (Feb 03, 2013)</title><link>https://mathnetnumerics.codeplex.com/releases?ReleaseId=101319</link><description>&lt;div class="wikidoc"&gt;&lt;ul&gt;&lt;li&gt;Drops the dependency on the zlib library. We thus no longer have any dependencies on other packages.&lt;/li&gt;
&lt;li&gt;Adds Modified Bessel &amp;amp; Struve special functions&lt;/li&gt;
&lt;li&gt;Fixes a bug in our iterative kurtosis statistics formula&lt;/li&gt;&lt;/ul&gt;
Linear Algebra:
&lt;ul&gt;&lt;li&gt;Performance work, this time mostly around accessing matrix rows/columns as vectors. Opting out from targeted patching in our matrix and vector indexers to allow inlining.&lt;/li&gt;
&lt;li&gt;Fixes an issue around Thin-QR solve&lt;/li&gt;
&lt;li&gt;Simplifications around using native linear algebra providers (&lt;i&gt;more details to be added here later&lt;/i&gt;)&lt;/li&gt;&lt;/ul&gt;
F#:
&lt;ul&gt;&lt;li&gt;Adds the BigRational module from the F# PowerPack, now to be maintained here instead.&lt;/li&gt;
&lt;li&gt;Better support for our Complex types (close to the F# PowerPack Complex type)&lt;/li&gt;&lt;/ul&gt;
Thanks a lot for all the contributions, notably from Marcus Cuda, Gustavo Guerra, Artyom Baranovskiy, Thomas Ibel and Wayne Wu.&lt;br /&gt;&lt;br /&gt;Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Sun, 03 Feb 2013 19:37:57 GMT</pubDate><guid isPermaLink="false">Created Release: Math.NET Numerics v2.4.0 (Feb 03, 2013) 20130203073757P</guid></item><item><title>Released: Math.NET Numerics v2.4.0 (Feb 03, 2013)</title><link>http://mathnetnumerics.codeplex.com/releases/view/101319</link><description>
&lt;div class="wikidoc"&gt;
&lt;ul&gt;
&lt;li&gt;Drops the dependency on the zlib library. We thus no longer have any dependencies on other packages.
&lt;/li&gt;&lt;li&gt;Adds Modified Bessel &amp;amp; Struve special functions &lt;/li&gt;&lt;li&gt;Fixes a bug in our iterative kurtosis statistics formula&lt;/li&gt;&lt;/ul&gt;
Linear Algebra:
&lt;ul&gt;
&lt;li&gt;Performance work, this time mostly around accessing matrix rows/columns as vectors. Opting out from targeted patching in our matrix and vector indexers to allow inlining.
&lt;/li&gt;&lt;li&gt;Fixes an issue around Thin-QR solve &lt;/li&gt;&lt;li&gt;Simplifications around using native linear algebra providers (&lt;i&gt;more details to be added here later&lt;/i&gt;)&lt;/li&gt;&lt;/ul&gt;
F#:
&lt;ul&gt;
&lt;li&gt;Adds the BigRational module from the F# PowerPack, now to be maintained here instead.
&lt;/li&gt;&lt;li&gt;Better support for our Complex types (close to the F# PowerPack Complex type)&lt;/li&gt;&lt;/ul&gt;
Thanks a lot for all the contributions, notably from Marcus Cuda, Gustavo Guerra, Artyom Baranovskiy, Thomas Ibel and Wayne Wu.&lt;br&gt;
&lt;br&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
If you absolutely require a signed library with a strong name:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Sun, 03 Feb 2013 19:37:57 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.4.0 (Feb 03, 2013) 20130203073757P</guid></item><item><title>Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/98245</link><description>&lt;div class="wikidoc"&gt;Portable Library Build:
&lt;ul&gt;&lt;li&gt;Adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;New: portable build also for F# extensions (.Net 4.5, SL5 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;NuGet: portable builds are now included in the main packages, no more need for special portable packages&lt;/li&gt;&lt;/ul&gt;
Linear Algebra:
&lt;ul&gt;&lt;li&gt;Continued major storage rework, in this release focusing on vectors (previous release was on matrices)&lt;/li&gt;
&lt;li&gt;Thin QR decomposition (in addition to existing full QR)&lt;/li&gt;
&lt;li&gt;Static CreateRandom for all dense matrix and vector types&lt;/li&gt;
&lt;li&gt;F#: slicing support for matrices and vectors&lt;/li&gt;&lt;/ul&gt;
Random and Probability Distributions:
&lt;ul&gt;&lt;li&gt;Consistent static Sample methods for all continuous and discrete distributions (was previously missing on a few)&lt;/li&gt;
&lt;li&gt;F#: better usability for random numbers and distributions.&lt;/li&gt;&lt;/ul&gt;
Misc:
&lt;ul&gt;&lt;li&gt;F# extensions are now using F# 3.0&lt;/li&gt;
&lt;li&gt;Updated Intel MKL references for our native linear algebra providers&lt;/li&gt;
&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Note: The portable package &lt;span class="codeInline"&gt; MathNet.Numerics.Portable &lt;/span&gt; has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Mon, 26 Nov 2012 10:05:27 GMT</pubDate><guid isPermaLink="false">Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121126100527A</guid></item><item><title>Released: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/98245</link><description>
&lt;div class="wikidoc"&gt;Portable Library Build:
&lt;ul&gt;
&lt;li&gt;Adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps)
&lt;/li&gt;&lt;li&gt;New: portable build also for F# extensions (.Net 4.5, SL5 and .NET for Windows Store apps)
&lt;/li&gt;&lt;li&gt;NuGet: portable builds are now included in the main packages, no more need for special portable packages&lt;/li&gt;&lt;/ul&gt;
Linear Algebra:
&lt;ul&gt;
&lt;li&gt;Continued major storage rework, in this release focusing on vectors (previous release was on matrices)
&lt;/li&gt;&lt;li&gt;Thin QR decomposition (in addition to existing full QR) &lt;/li&gt;&lt;li&gt;Static CreateRandom for all dense matrix and vector types &lt;/li&gt;&lt;li&gt;F#: slicing support for matrices and vectors&lt;/li&gt;&lt;/ul&gt;
Random and Probability Distributions:
&lt;ul&gt;
&lt;li&gt;Consistent static Sample methods for all continuous and discrete distributions (was previously missing on a few)
&lt;/li&gt;&lt;li&gt;F#: better usability for random numbers and distributions.&lt;/li&gt;&lt;/ul&gt;
Misc:
&lt;ul&gt;
&lt;li&gt;F# extensions are now using F# 3.0 &lt;/li&gt;&lt;li&gt;Updated Intel MKL references for our native linear algebra providers &lt;/li&gt;&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
Note: The portable package &lt;span class="codeInline"&gt;MathNet.Numerics.Portable &lt;/span&gt;
has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br&gt;
&lt;br&gt;
If you absolutely require a signed library with a strong name:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Mon, 26 Nov 2012 10:05:27 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121126100527A</guid></item><item><title>Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/98245</link><description>&lt;div class="wikidoc"&gt;Common:
&lt;ul&gt;&lt;li&gt;Continued major linear algebra storage rework, in this release focusing on vectors (previous release was on matrices)&lt;/li&gt;
&lt;li&gt;Static CreateRandom for all dense matrix and vector types&lt;/li&gt;
&lt;li&gt;Thin QR decomposition (in additin to existing full QR)&lt;/li&gt;
&lt;li&gt;Consistent static Sample methods for continuous and discrete distributions (was previously missing on a few)&lt;/li&gt;
&lt;li&gt;Portable build adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
F# specific:
&lt;ul&gt;&lt;li&gt;F# 3.0&lt;/li&gt;
&lt;li&gt;Portable build available (.Net 4.5, SL5 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;Slicing support for matrices and vectors&lt;/li&gt;
&lt;li&gt;Better usability for random numbers and distributions.&lt;/li&gt;&lt;/ul&gt;
Native providers:
&lt;ul&gt;&lt;li&gt;Updated MKL references&lt;/li&gt;&lt;/ul&gt;
Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Note: The portable package &lt;span class="codeInline"&gt; MathNet.Numerics.Portable &lt;/span&gt; has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Mon, 26 Nov 2012 00:21:36 GMT</pubDate><guid isPermaLink="false">Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121126122136A</guid></item><item><title>Released: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/98245</link><description>
&lt;div class="wikidoc"&gt;Common:
&lt;ul&gt;
&lt;li&gt;Continued major linear algebra storage rework, in this release focusing on vectors (previous release was on matrices)
&lt;/li&gt;&lt;li&gt;Static CreateRandom for all dense matrix and vector types &lt;/li&gt;&lt;li&gt;Thin QR decomposition (in additin to existing full QR) &lt;/li&gt;&lt;li&gt;Consistent static Sample methods for continuous and discrete distributions (was previously missing on a few)
&lt;/li&gt;&lt;li&gt;Portable build adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps)
&lt;/li&gt;&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
F# specific:
&lt;ul&gt;
&lt;li&gt;F# 3.0 &lt;/li&gt;&lt;li&gt;Portable build available (.Net 4.5, SL5 and .NET for Windows Store apps) &lt;/li&gt;&lt;li&gt;Slicing support for matrices and vectors &lt;/li&gt;&lt;li&gt;Better usability for random numbers and distributions.&lt;/li&gt;&lt;/ul&gt;
Native providers:
&lt;ul&gt;
&lt;li&gt;Updated MKL references&lt;/li&gt;&lt;/ul&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
Note: The portable package &lt;span class="codeInline"&gt;MathNet.Numerics.Portable &lt;/span&gt;
has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br&gt;
&lt;br&gt;
If you absolutely require a signed library with a strong name:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Mon, 26 Nov 2012 00:21:36 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121126122136A</guid></item><item><title>Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/98245</link><description>&lt;div class="wikidoc"&gt;Common:
&lt;ul&gt;&lt;li&gt;Continued major linear algebra storage rework, in this release focusing on vectors (previous release was on matrices)&lt;/li&gt;
&lt;li&gt;Static CreateRandom for all dense matrix and vector types&lt;/li&gt;
&lt;li&gt;Thin QR decomposition (in additin to existing full QR)&lt;/li&gt;
&lt;li&gt;Consistent static Sample methods for continuous and discrete distributions (was previously missing on a few)&lt;/li&gt;
&lt;li&gt;Portable build adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
F# specific:
&lt;ul&gt;&lt;li&gt;F# 3.0&lt;/li&gt;
&lt;li&gt;Portable build available (.Net 4.5, SL5 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;Slicing support for matrices and vectors&lt;/li&gt;
&lt;li&gt;Better usability for random numbers and distributions. The &amp;quot;FSharp&amp;quot; module is no longer needed.&lt;/li&gt;&lt;/ul&gt;
Native providers:
&lt;ul&gt;&lt;li&gt;Updated MKL references&lt;/li&gt;&lt;/ul&gt;
Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Note: The portable package &lt;span class="codeInline"&gt; MathNet.Numerics.Portable &lt;/span&gt; has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Mon, 26 Nov 2012 00:09:38 GMT</pubDate><guid isPermaLink="false">Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121126120938A</guid></item><item><title>Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/98245</link><description>&lt;div class="wikidoc"&gt;Common:
&lt;ul&gt;&lt;li&gt;Continued major linear algebra storage rework, in this release focusing on vectors (previous release was on matrices)&lt;/li&gt;
&lt;li&gt;Static CreateRandom for all dense matrix and vector types&lt;/li&gt;
&lt;li&gt;Thin QR decomposition (in additin to existing full QR)&lt;/li&gt;
&lt;li&gt;Consistent static Sample methods for continuous and discrete distributions (was previously missing on a few)&lt;/li&gt;
&lt;li&gt;Portable build adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
F# specific:
&lt;ul&gt;&lt;li&gt;F# 3.0&lt;/li&gt;
&lt;li&gt;Portable build available (.Net 4.5, SL5 and .NET for Windows Store apps)&lt;/li&gt;
&lt;li&gt;F#: slicing support for matrices and vectors&lt;/li&gt;
&lt;li&gt;F#: new modules for random numbers and distributions. Dropped &amp;quot;FSharp&amp;quot; module.&lt;/li&gt;&lt;/ul&gt;
Native providers:
&lt;ul&gt;&lt;li&gt;Updated MKL references&lt;/li&gt;&lt;/ul&gt;
Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Note: The portable package &lt;span class="codeInline"&gt; MathNet.Numerics.Portable &lt;/span&gt; has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Sun, 25 Nov 2012 15:56:43 GMT</pubDate><guid isPermaLink="false">Updated Release: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121125035643P</guid></item><item><title>Released: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/98245</link><description>
&lt;div class="wikidoc"&gt;Common:
&lt;ul&gt;
&lt;li&gt;Continued major linear algebra storage rework, in this release focusing on vectors (previous release was on matrices)
&lt;/li&gt;&lt;li&gt;Static CreateRandom for all dense matrix and vector types &lt;/li&gt;&lt;li&gt;Thin QR decomposition (in additin to existing full QR) &lt;/li&gt;&lt;li&gt;Consistent static Sample methods for continuous and discrete distributions (was previously missing on a few)
&lt;/li&gt;&lt;li&gt;Portable build adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps)
&lt;/li&gt;&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
F# specific:
&lt;ul&gt;
&lt;li&gt;F# 3.0 &lt;/li&gt;&lt;li&gt;Portable build available (.Net 4.5, SL5 and .NET for Windows Store apps) &lt;/li&gt;&lt;li&gt;F#: slicing support for matrices and vectors &lt;/li&gt;&lt;li&gt;F#: new modules for random numbers and distributions. Dropped &amp;quot;FSharp&amp;quot; module.&lt;/li&gt;&lt;/ul&gt;
Native providers:
&lt;ul&gt;
&lt;li&gt;Updated MKL references&lt;/li&gt;&lt;/ul&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
Note: The portable package &lt;span class="codeInline"&gt;MathNet.Numerics.Portable &lt;/span&gt;
has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br&gt;
&lt;br&gt;
If you absolutely require a signed library with a strong name:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Sun, 25 Nov 2012 15:56:43 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121125035643P</guid></item><item><title>Created Release: Math.NET Numerics v2.3.0 (Nov 25, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases?ReleaseId=98245</link><description>&lt;div class="wikidoc"&gt;Common:
&lt;ul&gt;&lt;li&gt;Continued major linear algebra storage rework, in this release focusing on vectors (previous release was on matrices)&lt;/li&gt;
&lt;li&gt;Static CreateRandom for all dense matrix and vector types&lt;/li&gt;
&lt;li&gt;Thin QR decomposition (in additin to existing full QR)&lt;/li&gt;
&lt;li&gt;Consistent static Sample methods for continuous and discrete distributions (was previously missing on a few)&lt;/li&gt;
&lt;li&gt;Portable build adds support for WP8&lt;/li&gt;
&lt;li&gt;Various bug, performance and usability fixes&lt;/li&gt;&lt;/ul&gt;
F# specific:
&lt;ul&gt;&lt;li&gt;F# 3.0&lt;/li&gt;
&lt;li&gt;Portable build now also for F# modules&lt;/li&gt;
&lt;li&gt;F#: slicing support for matrices and vectors&lt;/li&gt;
&lt;li&gt;F#: new modules for random numbers and distributions. Dropped &amp;quot;FSharp&amp;quot; module.&lt;/li&gt;&lt;/ul&gt;
Native providers:
&lt;ul&gt;&lt;li&gt;Updated MKL references&lt;/li&gt;&lt;/ul&gt;
Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics &lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.FSharp &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Note: The portable package &lt;span class="codeInline"&gt; MathNet.Numerics.Portable &lt;/span&gt; has been dropped, as NuGet 2.1 properly supports portable builds in the main package.&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt; PM&amp;gt; Install-Package MathNet.Numerics.Signed &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Sun, 25 Nov 2012 15:49:58 GMT</pubDate><guid isPermaLink="false">Created Release: Math.NET Numerics v2.3.0 (Nov 25, 2012) 20121125034958P</guid></item><item><title>Created Release: Math.NET Numerics v2.2.1 (Aug 29, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases?ReleaseId=93622</link><description>&lt;div class="wikidoc"&gt;Major linear algebra rework since v2.1, now available on Codeplex as well (previous versions were only available via NuGet).&lt;br /&gt;&lt;br /&gt;Since v2.2.0:
&lt;ul&gt;&lt;li&gt;Student-T density more robust for very large degrees of freedom&lt;/li&gt;
&lt;li&gt;Sparse Kronecker product much more efficient (now leverages sparsity)&lt;/li&gt;
&lt;li&gt;Direct access to raw matrix storage implementations for advanced extensibility&lt;/li&gt;
&lt;li&gt;Now also separate package for signed core library with a &lt;b&gt;strong name&lt;/b&gt; (we dropped strong names in v2.2.0)&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics&lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;New: instead of the special Silverlight build we now provide a portable version supporting .Net 4, Silverlight 5 and .Net Core (WinRT) 4.5:&lt;br /&gt;&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Portable&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you absolutely require a signed library with a strong name:&lt;br /&gt;&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed&lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Wed, 29 Aug 2012 14:17:21 GMT</pubDate><guid isPermaLink="false">Created Release: Math.NET Numerics v2.2.1 (Aug 29, 2012) 20120829021721P</guid></item><item><title>Released: Math.NET Numerics v2.2.1 (Aug 29, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/93622</link><description>
&lt;div class="wikidoc"&gt;Major linear algebra rework since v2.1, now available on Codeplex as well (previous versions were only available via NuGet).&lt;br&gt;
&lt;br&gt;
Since v2.2.0:
&lt;ul&gt;
&lt;li&gt;Student-T density more robust for very large degrees of freedom &lt;/li&gt;&lt;li&gt;Sparse Kronecker product much more efficient (now leverages sparsity) &lt;/li&gt;&lt;li&gt;Direct access to raw matrix storage implementations for advanced extensibility
&lt;/li&gt;&lt;li&gt;Now also separate package for signed core library with a &lt;b&gt;strong name&lt;/b&gt; (we dropped strong names in v2.2.0)&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics&lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
New: instead of the special Silverlight build we now provide a portable version supporting .Net 4, Silverlight 5 and .Net Core (WinRT) 4.5:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Portable&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
If you absolutely require a signed library with a strong name:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Signed&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Wed, 29 Aug 2012 14:17:21 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.2.1 (Aug 29, 2012) 20120829021721P</guid></item><item><title>Created Release: Math.NET Numerics v2.2.0 (Aug 27, 2012)</title><link>https://mathnetnumerics.codeplex.com/releases?ReleaseId=93455</link><description>&lt;div class="wikidoc"&gt;Major linear algebra rework since v2.1, now available on Codeplex as well (previous versions were only available via NuGet).&lt;br /&gt;&lt;br /&gt;Also available as NuGet packages:&lt;br /&gt;&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics&lt;/span&gt;&lt;br /&gt;&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;New: instead of the special Silverlight build we now provide a portable version supporting .Net 4, Silverlight 5 and .Net Core (WinRT) 4.5:&lt;br /&gt;&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Portable&lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cdrnet</author><pubDate>Mon, 27 Aug 2012 17:03:14 GMT</pubDate><guid isPermaLink="false">Created Release: Math.NET Numerics v2.2.0 (Aug 27, 2012) 20120827050314P</guid></item><item><title>Released: Math.NET Numerics v2.2.0 (Aug 27, 2012)</title><link>http://mathnetnumerics.codeplex.com/releases/view/93455</link><description>
&lt;div class="wikidoc"&gt;Major linear algebra rework since v2.1, now available on Codeplex as well (previous versions were only available via NuGet).&lt;br&gt;
&lt;br&gt;
Also available as NuGet packages:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics&lt;/span&gt;&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.FSharp&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
New: instead of the special Silverlight build we now provide a portable version supporting .Net 4, Silverlight 5 and .Net Core (WinRT) 4.5:&lt;br&gt;
&lt;span class="codeInline"&gt;PM&amp;gt; Install-Package MathNet.Numerics.Portable&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Mon, 27 Aug 2012 17:03:14 GMT</pubDate><guid isPermaLink="false">Released: Math.NET Numerics v2.2.0 (Aug 27, 2012) 20120827050314P</guid></item><item><title>Updated Release: Beta 2 (Apr 17, 2011)</title><link>http://mathnetnumerics.codeplex.com/releases/view/56448</link><description>&lt;div class="wikidoc"&gt;Second beta release.&lt;br /&gt;This release includes numerous bug fixes, native wrappers for ACML and MKL (do to licensing restrictions, users will have to build the providers themselves), and several breaking API changes/improvements.&lt;br /&gt;&lt;br /&gt;This is the final beta release and we are now working on improving performance, unit tests, and documentation.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>cuda</author><pubDate>Sun, 17 Apr 2011 13:20:25 GMT</pubDate><guid isPermaLink="false">Updated Release: Beta 2 (Apr 17, 2011) 20110417012025P</guid></item></channel></rss>