FunctionBasis.GetFunction Method

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetFunction(Double[]) Constructs a new LinearCombination from the functions in this instance.
Obsolete.
GetFunction(Vector<Double>) Constructs a new LinearCombination from the functions in this instance.

GetFunction(Double[])

Note: This API is now obsolete.
Constructs a new LinearCombination from the functions in this instance.
C#
[ObsoleteAttribute]
public LinearCombination GetFunction(
	double[] coefficients
)

Parameters

coefficients  Double[]
A Double array containing the coefficients in the linear combination of the functions in this instance.

Return Value

LinearCombination
The LinearCombination of the basis functions with coefficnets coefficients.

GetFunction(Vector<Double>)

Constructs a new LinearCombination from the functions in this instance.
C#
public virtual LinearCombination GetFunction(
	Vector<double> coefficients
)

Parameters

coefficients  Vector<Double>
A vector containing the coefficients in the linear combination of the functions in this instance.

Return Value

LinearCombination
The LinearCombination of the basis functions with coefficnets coefficients.

See Also