BarycentricBasis.FillValues Method

Definition

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

Overload List

FillValues(Double, DenseVector<Double>) Fills a dense vector with the values of the member functions of a FunctionBasis at a specified value.
FillValues(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.

FillValues(Double, DenseVector<Double>)

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

Parameters

x  Double
The value at which to evaluate the member functions.
values  DenseVector<Double>
A dense vector with length equal to the number of functions in this FunctionBasis.

Exceptions

ArgumentNullExceptionvalues is null.
DimensionMismatchExceptionThe length of values is less than the number of member functions in this FunctionBasis.

See Also