Evaluates the member functions of this FunctionBasis at a specified value.

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

Syntax

Visual Basic (Declaration)
Public Function ValuesAt ( _
	x As Double _
) As GeneralVector
C#
public GeneralVector ValuesAt (
	double x
)
C++
public:
GeneralVector^ ValuesAt (
	double x
)

Parameters

x (System.Double)
A real number.

Return Value

A Vector containing the function values.

Remarks

This method creates a new Vector every time it is called. In some situations, it may be more efficient to call the FillValues(Double, GeneralVector) method instead.