mathnet-numerics icon indicating copy to clipboard operation
mathnet-numerics copied to clipboard

Math.NET Numerics

Results 220 mathnet-numerics issues
Sort by recently updated
recently updated
newest added

I posted it in the wrong section, moving it to 'Discussion'

Adler32 checksum no work In Formatter.cs use Adler32 as checksum ``` static byte[] PackCompressedBlock(byte[] data, DataType dataType) { var adler = BitConverter.GetBytes(Adler32.Compute(data)); using (var compressedStream = new MemoryStream()) { compressedStream.WriteByte(0x58);...

I would like to raise a question. When I use `Fit.Power`, it returns NaN, but if I change the model to Polynomial, there is no such error. I want to...

The matrix `{ { 2, 0 }, { 1, 2 } }` is not symmetric, hence not positive definite. Yet the code ``` using MathNet.Numerics.LinearAlgebra; var m = Matrix.Build.DenseOfArray(new double[,]...

Are there any plans on adding 1D convolution into the library?

How do I fit the gamma distribution, please? I didn't find it when I checked the documentation, am I missing something?

On some datasets the method calculates data similar to the truth, on others it crashes with the message **_Matrix must be positive definite_**. The **Fit.Polynomial** method handles all sets without...

This DLL is 157MB (x64 version), which would make it far and away the biggest dependency of my app. Is there any way to cut down the size, e.g. remove...

When I try to get eigenvector using Evd(), It stops... var bt = DenseMatrix.OfArray(new double[,] { { x11, x12, x13, x14 }, { x21, x22, x23, x24 }, { x31,...

Add tensor support in `MathNet.Numerics.LinearAlgebra`.