up vote 16 down vote favorite
11
share [g+] share [fb]

Is there stable linear algebra (more specifically, vectors, matrices, multidimensional arrays and basic operations on them) library for C#?

Search yielded a few open source libraries which are either not updated for couple of years or are in an early beta stage - and Centerspace NMath. Which alternatives are worth checking?

link|improve this question

43% accept rate
feedback

7 Answers

up vote 10 down vote accepted

Math.NET. We're using it in production.

link|improve this answer
Just be aware that there are several packages in Math.NET. Some are LGPL but a couple are GPL, which, for a commercial application, could well be an issue. – cletus Dec 25 '08 at 21:46
Thanks, looks better. I still miss multidimensional lattices, matrices of custom types etc, but it should work – ima Dec 26 '08 at 7:21
feedback

See: http://en.wikipedia.org/wiki/List_of_numerical_libraries

http://www.alglib.net/ - Open source. Multi-language library.

http://www.mathdotnet.com/ - Open source. As mentioned by others. dnAnalytics is replaced by http://numerics.mathdotnet.com/ in this.

http://www.lutzroeder.com/dotnet/ - Lutz Roeder has a open source port Mapack.Net of LAPACK.

http://www.extremeoptimization.com/ - Commercial.

link|improve this answer
This answer would be more helpful if people who need C# algebra libraries didn't know how to use google. – ima Feb 10 '10 at 9:03
feedback

We have evaluated nMath and were quite pleased with its programmability and speed. Their support staff even worked over a weekend to figure out a bug we found. We're not using them in production yet, so take it for what it's worth. We liked that they used Intel's Kernel Math library instead of rolling their own numerics.

link|improve this answer
feedback

I am using ILNumerics.NET

www.ilnumerics.net

Very good support and stable. I don't have any comparison though.

link|improve this answer
feedback

Have you looked into dnAnalytics?

link|improve this answer
yes, but version "0.3.1 Beta" makes me nervous thinking about including it into important long term project – ima Dec 25 '08 at 15:10
That's a fair point but beta means different things to different people. At one end is the Ext-GWT guy who wakes up in the morning and decides to make the alpha1 version final. At the other end is gmail, still in beta. dnAnalytics has been around since October 2007 and still active. Worth a look? – cletus Dec 25 '08 at 15:21
Frankly, not. 23 lines of documentation, useless XML doc (Object object - the object), very wide feature set with gaping holes in the middle... Looks like supporting code for some other project, or may be training ground for developers. – ima Dec 25 '08 at 16:43
DnAnalytics is no longer supported. Not it is a part of Math.NET Numerics. – Romeo Nov 25 '11 at 10:27
feedback

.Net Matrix is a similar question that you may want to look at the answers for other ideas.

link|improve this answer
feedback

Few weeks ago I found a new c# library FinMath contains implementations of many various methods and techniques including basic linear algebra, such as:

  1. Vector and Matrix implementations (easy to use high-level interfaces covering most of all BLAS functionality)
  2. Algorithms of matrix factorizations (LU, QR, SVD, Cholesky).

And many other useful things like statistics, factor and cluster analysis, linear and quadratic programming solver and etc.

Unfortunately, it's not free, but it's extremely fast, because it uses MKL for most complex computations and at the same time it distributed as single library supports both 32bit and 64bit modes and requires no special maintenance to use, like taking care about native libraries.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.