New Post: Noob Question: Solving a Matrix
Hi, Not entirely sure where your 4th variable comes in, but assuming you really want to solve the linear system A*x=y to x, or with actual numbers: 1*u + 0*v - 2*w = 0 2*u + 0*v + 0*w = 1 0*u + 2*v...
View ArticleNew Post: ReadMatrix(stream)
Thanks. Could you also copy the stack trace of the exception here? Thanks Christoph
View ArticleNew Post: ReadMatrix(stream)
Thanks. I'm building an asp.net app and I want to let user type a matrix into a textbox and then use ReadMatrix to convert it to a Matrix. Of course I can parse it myself, but thought I'd try the...
View ArticleNew Post: ReadMatrix(stream)
Thanks, that helps to pinpoint the problem. Could you retry but this time with a concrete matrix type in the reader?var mat = new DelimitedReader<DenseMatrix, double>(); (DenseMatrix from the...
View ArticleNew Post: Noob Question: Solving a Matrix
Thanks, this is definitely helpful, but I'm still finding myself a bit stuck. Here's what I'm trying to do. I have an arbitrary number of variables in equations, such as: w = 2y 2w = z 2x = 3y + 2z So...
View ArticleNew Post: Noob Question: Solving a Matrix
I figured it out. I just need to do something like: var z = x.QR().Determinent; x *= z; Thanks again for the help!
View ArticleNew Post: Noob Question: Solving a Matrix
One more question! x.QR(). Determinant doesn't work for non-square matrices. Is there a way to do it I'm missing?
View ArticleNew Post: Solving a Matrix Using Integers
Since my last post series has probably gotten confusing as I've stated my problem, worked it out, and then stated a new one, I figured I'd just start a new thread. :) What's the best way to find the...
View ArticleNew Post: Native Linear Algebra Providers
Hi Just started playing around with math.net and Native Linear Algebra Providers (MKL). I just want to clarify whether I have to purchase MKL from intel and recompile them as described on this site? I...
View ArticleNew Post: Is there a covariance method for 2 dataset?
Thx Chris. As my team is using this lib, can we add such mathematical methods and check in? Do you have a list of methods you plan to add? I can help on this.
View ArticleCreated Release: Math.NET Numerics v2.5.0 (Apr 14, 2013)
Potentially Breaking Changes:Despite semver this release contains two changes that may break code but without triggering a major version number change. The changes fix semantic bugs and a major...
View ArticleSource code checked in, #fee74a00a747c4523d5bc8a323463cb2708e2b66
Fix wrong NuGet sample package names in release notes
View ArticleReleased: Math.NET Numerics v2.5.0 (Apr 14, 2013)
Potentially Breaking Changes: Despite semver this release contains two changes that may break code but without triggering a major version number change. The changes fix semantic bugs and a major...
View ArticleUpdated Release: Math.NET Numerics v2.5.0 (Apr 14, 2013)
Potentially Breaking Changes:Despite semver this release contains two changes that may break code but without triggering a major version number change. The changes fix semantic bugs and a major...
View ArticleNew Post: Is there a covariance method for 2 dataset?
Yes, we accept contributions, and a covariance implementation would certainly be welcome. We use github to coordinate contributions, see also http://numerics.mathdotnet.com/ Thanks, Christoph
View ArticleNew Post: Native Linear Algebra Providers
Hi We do have an MKL license so we are allowed to redistribute our native MKL package and permit our users to use it, but that does not imply that you have a right to redistribute it yourself as part...
View ArticleNew Post: Native Linear Algebra Providers
Hi, Christoph, Is the MKL dll checked into the repository? If not, where can I obtain it to use in Math .net? Thanks, Candy
View ArticleNew Post: Native Linear Algebra Providers
Hi Candy, The recommended way is to use the NuGet packages, see http://christoph.ruegg.name/blog/2013/2/3/mathnet-numerics-with-native-linear-algebra.html. Thanks, Christoph
View ArticleNew Post: SVD failes to converge
Hi I have a DenseMatrix (529 x 529) populated with very small numbers (2.37200035620307E-12, 1.19101E-57 etc.) When ever I try to perform SVD on it I get an "Algorithm failed to converge" exception...
View Article