Gets the set of X-coordinates where the Quadratic
curve crosses the X-axis.
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Overrides Function FindRoots As Double() |
| C# |
|---|
public override double[] FindRoots () |
| C++ |
|---|
public: virtual array<double>^ FindRoots () override |
Return Value
A Double array of between zero and two numbers specifying the roots of the Quadratic curve.
Remarks
This method returns an array containing only the real zeroes
of the quadratic curve. To obtain all the roots, regardless of
whether they are real or DoubleComplex,
use the FindComplexRoots() method.