Matrix computation in .NET

  • Thread starter Thread starter rickz
  • Start date Start date
R

rickz

Hi,

Does anybody know where I can find the matrix computation components in .NET
framework?

Do I need to use a third-party one or there's one that comes with the
framework libraries?

Thanks!

Rick
 
Rick,

I don't believe that there is anything in the framework to handle matrix
computations. I believe that you will have to use a third party component
for this.

Hope this helps.
 
Hi Rick

I'm "in the process" of preparing my MMT# (Matrix Math Toolkit Sharp v 1)
for release. It includes the usual matrix and vector arithmetic functions:
add, multiply, subtract, invert, norm, condition, eigenvalues (of symmetric
matrices), SaXpY, and a bunch of others, with some specialization for
dealing with 3D Vectors.



I've been moving on this as time permits; what's your timeframe?



Expected selling price: somewhere around $100. Source code included, of
course.



Meanwhile, check System.Matrix; there may be something in there that you can
use, but IIRC it's aimed at graphics (last i looked).
 
Back
Top