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
)
Public Shared Function FindZero (
f As Func(Of IReadOnlyList(Of Double), IReadOnlyList(Of Double)),
x0 As IReadOnlyList(Of Double)
) As ColumnVector
public:
static ColumnVector^ FindZero(
Func<IReadOnlyList<double>^, IReadOnlyList<double>^>^ f,
IReadOnlyList<double>^ x0
)
static member FindZero :
f : Func<IReadOnlyList<float>, IReadOnlyList<float>> *
x0 : IReadOnlyList<float> -> ColumnVector
Parameters
- f
- Type: SystemFuncIReadOnlyListDouble, IReadOnlyListDouble
The vector function. - x0
- Type: System.Collections.GenericIReadOnlyListDouble
The vector argument.
Return Value
Type:
ColumnVectorThe vector argument which makes all components of the vector function zero.
Exceptions See Also