vote up 5 vote down star
6

Hi,

I'm currently evaluating different math libraries for my next .NET project, the decent one I found is Math.NET, which is free and open-source.

Do you have any recommendation for good math libraries?, free ones are preferable of course, but that isn't a prerequisite.

EDIT: To make the question a bit more clear, I need a math to do different numerical operations, like differential, integration and different operations on complex numbers.

(I've searched for similar questions but haven't founded any, if you find a duplicate one please post the link and I'll vote to close this one)

flag

2  
What are you looking for in a math library? What functions must it have, or class of equations? – James Black Sep 7 at 3:28
Are you looking to do some precise math operation? Differencials? – Pierre-Alain Vigeant Sep 7 at 3:32
If you're looking for a symbolic math library, see stackoverflow.com/questions/770064/… – Mauricio Scheffer Sep 7 at 3:38
Differential, Integration, Complex-numbers, etc. – Moayad Mardini Sep 7 at 3:40
@moayad: those can be done either numerically or symbolically. which one do you need? – Mauricio Scheffer Sep 7 at 3:43
show 3 more comments

5 Answers

vote up 7 vote down check

Here are some links:

1) Mathdotnet, A mathematical open source (MIT/X11, LGPL & GPL) library written in C#/.Net, aiming to provide a self contained clean framework for symbolic algebraic and numerical / scientific computations.

2) IMSL™ C# Numerical Library for Microsoft® .NET Applications (Paid)

3) Extreme Optimization Mathematics Library for .NET

link|flag
As I said, I've tried the first one, it looks decent, but I'm looking for a better one. The second one is only an analysis library, it's not to do mathematical operations, but only to do mathematical analysis. – Moayad Mardini Sep 7 at 3:58
I'll take a look at the third one, which looks capable of doing what I'm looking for, thanks! – Moayad Mardini Sep 7 at 3:59
Nice it helped you! – TheVillageIdiot Sep 7 at 4:31
That last one didn't look especially free? – Svish Nov 4 at 18:54
vote up 1 vote down

Wolfram

SUMMARY:

For .NET programmers, .NET/Link turns Mathematica into a scripting shell that lets you experiment with, build, and test .NET types a line at a time. It also makes .NET a powerful environment for writing programs that use the computational services of Mathematica.

link|flag
1  
I'm afraid this isn't the most convenience way to do some numerical operations. This solution needs a huge program, Mathematica, and it only works with older versions of the program. And the most important issue is that I'll have to install Mathematica's components (again, huge size), on clients' machines. – Moayad Mardini Sep 7 at 3:55
@Moayad, you are right. – adatapost Sep 7 at 3:57
1  
Anyway, thanks for the suggestion, I'll keep that in mind for future projects. +1 – Moayad Mardini Sep 7 at 4:00
vote up 1 vote down

You can run MATLAB code from .Net

There's also F# for Numerics

link|flag
Thanks for your suggestions. As with Mathematica, this solution needs a huge program whose components should be installed on client's machine. – Moayad Mardini Sep 7 at 4:04
F# for Numerics is a regular library... no additional program to install – Mauricio Scheffer Sep 7 at 4:12
I'll try that, thanks. Does the library works well with C#? – Moayad Mardini Sep 7 at 4:15
It will most likely work but awkwardly since it probably uses F# idioms. Try asking the author... – Mauricio Scheffer Sep 7 at 4:19
vote up 1 vote down

There is also NMath from CenterSpace (paid), or you could try linking to the GSL.

link|flag
vote up 1 vote down

Take a look at http://www.dewresearch.com/

link|flag

Your Answer

Get an OpenID
or

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