Click or drag to resize

MultiFunctionMathFindZero Method

Finds a vector argument which makes a vector function zero.

Namespace:  Meta.Numerics.Analysis
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static ColumnVector FindZero(
	Func<IReadOnlyList<double>, IReadOnlyList<double>> f,
	IReadOnlyList<double> x0
)

Parameters

f
Type: SystemFuncIReadOnlyListDouble, IReadOnlyListDouble
The vector function.
x0
Type: System.Collections.GenericIReadOnlyListDouble
The vector argument.

Return Value

Type: ColumnVector
The vector argument which makes all components of the vector function zero.
Exceptions
ExceptionCondition
ArgumentNullExceptionf or x0 is null.
DimensionMismatchExceptionThe dimension of f is not equal to the dimension of x0.
See Also