Pro_Zeck
Pro_Zeck

Reputation: 403

library for solving matrix problems in C#

Does Visual Studio 2008 or 2010 have a built-in library which can help in solving all sort of matrix problems?

For example:

Upvotes: 1

Views: 1529

Answers (2)

Blam
Blam

Reputation: 2965

I don't think there is a built in matrix manipulator for .NET, even if there is a custom library should provide a lot more features.

You could try http://numerics.mathdotnet.com/

Upvotes: 3

Steve Townsend
Steve Townsend

Reputation: 54168

Advanced matrix math is not builtin. You could try Extreme Optimization on a free trial version - it's expensive but maybe you can get an academic license? or perhaps your company will license if it works for you. Does not sound so expensive if you work out how long it would take to rebuild the matrix math you need. They might allow you to license only the matrix part at reduced cost.

Upvotes: 1

Related Questions