-
Attached print sceen of the way I linked my interactive `.fsx` file to `Math.Net` there is a red line that shows an error in calling `open MathNet.Numerics.LinearAlgebra`
![1](https://user-images.g…
-
The following code snippet does not compile because there are no suitable operators for Complex and SymbolicExpression operands in `z * z + i/2`.
```
using System;
using static MathNet.Symbolics…
-
The way MathNet.Symbolics handles division with infinite and undefined values is a bit incorrect in my opinion: `1/0` evaluates to ComplexInfinity, when I would really expect it to be PositiveInfinity…
-
Hi,
I've been struggling with this issue for a couple of hours now. I'm trying to use MKL for simple linear algebra calculations (matrix & vector multiplication mostly), and I can't figure out how to…
-
The function `ScalarMinimizationResult FindMinimum(IScalarObjectiveFunction objective, double lowerBound, double upperBound)` (in Numerics.Optimization) does not respect the `lowerBound` argument.
…
bt-88 updated
2 years ago
-
-
Hello,
Using the following example (with release 0.7.0 from NuGet), the low pass filter has a **unexpected response**.
` double fs = 1000; //sampling rate
double fw = 5;…
-
i am trying the 3.8.0 which says to include openblas support. I tried to give it a shot by using the Control.UseNativeOpenBLAS() command but it complained about not being able to find mathnet.numeric…
-
The code in calculateCovarianceMatrix can be improved.
In line with the original youtrack 47-7683: Although, the code used in this function currently is theoretically correct (because pinv(J'J)=inv…
-
I am trying to find out why I can solve a given linear system in python (`scipy.linalg.lstsq`) but not in Mathnet.
Here is the python code:
import numpy as np
import scipy.linalg
…