MultiFunctionMathFindZero Method

Finds a vector argument which makes a vector function zero.

Definition

Namespace: Meta.Numerics.Analysis
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static ColumnVector FindZero(
	Func<IReadOnlyList<double>, IReadOnlyList<double>> f,
	IReadOnlyList<double> x0
)

Parameters

f  FuncIReadOnlyListDouble, IReadOnlyListDouble
The vector function.
x0  IReadOnlyListDouble
The vector argument.

Return Value

ColumnVector
The vector argument which makes all components of the vector function zero.

Exceptions

ArgumentNullExceptionf or x0 is null.
DimensionMismatchExceptionThe dimension of f is not equal to the dimension of x0.

See Also