Function Basis<T>.Values At Method
Evaluates the member functions of this
FunctionBasis at a specified value.
Definition
Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
C#
A vector containing the function values.
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
public DenseVector<T> ValuesAt(
T x
)
Parameters
- x T
- A real number.
Return Value
DenseVector<T>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(T, DenseVector<T>) method instead.