Gets the set of X-coordinates where the curve crosses
the X-axis.
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Overridable Function FindRoots As Double() |
| C# |
|---|
public virtual double[] FindRoots () |
| C++ |
|---|
public: virtual array<double>^ FindRoots () |
Return Value
An array of X-coordinates where the curve crosses the X-axis.
Remarks
When implemented by a derived class, this method returns
at least one of the zeroes of the curve, if it has one. By default,
this method returns an empty array, indicating that no zeroes were
found.