Fills the rows of a GeneralMatrix with the values
of the member functions of a FunctionBasis evaluated for each element
in a Vector.
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub FillValues ( _ xValues As Vector, _ values As GeneralMatrix _ ) |
| C# |
|---|
public void FillValues ( Vector xValues, GeneralMatrix values ) |
| C++ |
|---|
public: void FillValues ( Vector^ xValues, GeneralMatrix^ values ) |
Parameters
- xValues (Extreme.Mathematics.LinearAlgebra.Vector)
- A Vector containing the values at which to evaluate the member functions.
- values (Extreme.Mathematics.LinearAlgebra.GeneralMatrix)
- A GeneralMatrix with number of columns greater than or equal to the number of functions in this FunctionBasis, and number of rows greater than or equal to the number of elements in xValues.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | xValues is nullNothingnullptr.
-or- values is nullNothingnullptr. |
| DimensionMismatchException | The number of columns of values is not equal to the number of member functions in this FunctionBasis-or- the number of rows of values does not equal the number of elements in values. |