Fills a GeneralVector with the values of the member functions of a FunctionBasis at a specified value.

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public MustOverride Sub FillValues ( _
	x As Double, _
	values As GeneralVector _
)
C#
public abstract void FillValues (
	double x,
	GeneralVector values
)
C++
public:
virtual void FillValues (
	double x, 
	GeneralVector^ values
) abstract

Parameters

x (System.Double)
The value at which to evaluate the member functions.
values (Extreme.Mathematics.LinearAlgebra.GeneralVector)
A GeneralVector with length equal to the number of functions in this FunctionBasis.

Exceptions

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