hello,
i wish to know, how matrices of any dimension can be created in c# ?as far as i now, we can create only 4x4 matrix using matrix3D data structure.
also,if this is possible, can we also find the SVD(singular value decomposition ) of a matrix directly in c# ? any help will be of great value.
thank you
Loading

VulpesPosted Dec 26, 2014, 5:57 AM
http://mathnetnumerics.codeplex.com/releases/view/126119
Sanju SinghPosted Dec 26, 2014, 3:00 AM
VulpesPosted Dec 24, 2014, 6:49 AM
You'll therefore need to look at third party packages for stuff such as matrix decomposition..
As it's both free and very extensive, I'd check out Math.NET Numerics which is available as a NuGet package:
http://www.nuget.org/packages/MathNet.Numerics/3.3.0
As it may not be immediately clear which method to call for SVD, I'd also read this thread I found on SO:
http://stackoverflow.com/questions/21865580/is-svd-included-in-mathnet-numerics-x86