Updated Wiki: Probability Distributions
Probability Distributions In MathNet.Numerics.Distributions we provide a wide range of probability distributions. Once parametrized, they can be used to sample non-uniform random numbers or investigate...
View ArticleUpdated Wiki: Probability Distributions
Probability Distributions In MathNet.Numerics.Distributions we provide a wide range of probability distributions. Once parametrized, they can be used to sample non-uniform random numbers or investigate...
View ArticleNew Post: NuGet packages for MathNet 2.3.0
I just added the two packages:Math.NET Numerics for F# Math.NET Numerics for F# - Code Samples However, after adding these packages, my packages.config file only has the zlib entry. Â Below is the...
View ArticleNew Post: NuGet packages for MathNet 2.3.0
Ah yes, there is a known bug in the NuGet 2.1 tools for F# projects, where, among others, the packages.config file is not updated correctly. Updating to the current v2.2 nightly build fixes this issue...
View ArticleNew Post: How to load data into matrix
Regarding sparse matrix loading performance: I created an adapter for that a while ago and have reworked it now so it should be usable for others. Get it fromhere.I used matrix data from...
View ArticleNew Post: How to load data into matrix
@YvonneYou really don't want to do Inverse() on a sparse matrix, since the result will most likely not be sparse. Use iterative solvers instead.If you are looking for sparse direct solvers: a few days...
View ArticleNew Post: How to load data into matrix
Thanks much for your comments Chris. Yeah, we guessed the problem is likely, as you suggest, in trying to get the Inverse - that sucker was running over 24 hrs and never finished so we pretty much gave...
View ArticleNew Post: How to load data into matrix
When solving a linear system Ax = b you can either choose a direct solver (like LU factorization) which will compute the exact solution, or use an iterative solver, which will compute an approximate...
View ArticleNew Post: How to load data into matrix
Thank you again, Chris.These pointers are all helpful and I'll share them with the team. Clearly a lot to learn and a few things to investigate and try.I was especially heartened by Matt's comment...
View ArticleNew Post: How to load data into matrix
Hi Chris,Thanks a lot for the help! Would it be ok for you if we include code derived from your storage adapter into the core library, and your sample code posted above into our documentation and/or...
View ArticleUpdated Wiki: References
References - Math.NET in the wild On this page we try to collect an excerpt of the "social" graph of the Math.NET Numerics project. What other code or projects contributed in some way to Math.NET?...
View ArticleUpdated Wiki: References
References - Math.NET in the wild On this page we try to collect an excerpt of the "social" graph of the Math.NET Numerics project. What other code or projects contributed in some way to Math.NET?...
View ArticleNew Post: Solving Ax=B in visual basic
Hi. Sorry for the delay. I've finally managed to put the solving function to work, it was my error on the elements' calculations...It's actually a HUGE matrix, about 2679x2679, it takes me around 1 min...
View Article