GeneralFunctionBasis.FillDerivatives Method

Definition

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

Overload List

FillDerivatives(Double, DenseVector<Double>) Fills a vector with the derivatives of the member functions at a specified value.
FillDerivatives(Vector<Double>, DenseMatrix<Double>) Fills the rows of a DenseMatrix<T> with the values of the member functions of a FunctionBasis evaluated for each element in a Vector.

FillDerivatives(Double, DenseVector<Double>)

Fills a vector with the derivatives of the member functions at a specified value.
C#
public override void FillDerivatives(
	double x,
	DenseVector<double> derivatives
)

Parameters

x  Double
The value at which to evaluate the this.derivatives.
derivatives  DenseVector<Double>
A vector with length greater than or equal to the number of functions in this FunctionBasis.

Exceptions

ArgumentNullExceptionderivatives is null.
DimensionMismatchExceptionThe length of derivatives is smaller than the number of member functions in this FunctionBasis.

See Also