Chebyshev Basis<T>.Fill Values Method
Definition
Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Fill | Fills a dense vector with the values of the member functions at a specified value. |
Fill | 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(T, DenseVector<T>)
Fills a dense vector with the values of the
member functions at a specified value.
public override void FillValues(
T x,
DenseVector<T> values
)
Parameters
- x T
- The value at which to evaluate the member functions.
- values DenseVector<T>
- A dense vector with length equal to the number of functions in this FunctionBasis.
Exceptions
Dimension | The length of values is not equal to the number of member functions in this FunctionBasis. |
Argument | values is null. |