Simon Fetzel
Simon Fetzel
```csharp var polynomialCoefficients = new double[] { 1.19469367e+21, 1.67924808e+16, 3.97850921e+10, 1.39471145e+00, 1.56417732e-07 }; var polynomial = new Polynomial(polynomialCoefficients); ``` The result of `polynomial.Roots()` will return the following roots: [0]: {(-4458290,732664504,...
It would be nice to have a list like: "Watch show by last episode": this list has the same content as the "Show" list, but displays the last episode when...
**Is your feature request related to a problem? Please describe.** Define an optimization problem with a complex matrix A of size (n,m) and a complex vector b of size (n,...
Consider the following code, which calculates the roots of the polynomial `x^4` using the companion matrix eigenvalues: ```c# var polynomial = new Polynomial(0, 0, 0, 0, 1); var rootsReal =...