Returns the zeros of a univariate function.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual double[] ComputeZeros(
	ZerosFunction..::.IFunction objectF
)
Visual Basic (Declaration)
Public Overridable Function ComputeZeros ( _
	objectF As ZerosFunction..::.IFunction _
) As Double()
Visual C++
public:
virtual array<double>^ ComputeZeros(
	ZerosFunction..::.IFunction^ objectF
)

Parameters

objectF
Type: Imsl.Math..::.ZerosFunction..::.IFunction
Contains the function for which the zeros will be found

Return Value

A double array containing the zeros of the univariate function.

See Also