Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Overridable Function Multiply ( _ matrix As Matrix, _ side As MatrixOperationSide _ ) As Vector |
| C# |
|---|
public virtual Vector Multiply ( Matrix matrix, MatrixOperationSide side ) |
| C++ |
|---|
public: virtual Vector^ Multiply ( Matrix^ matrix, MatrixOperationSide side ) |
Parameters
- matrix (Extreme.Mathematics.LinearAlgebra.Matrix)
- A Matrix.
- side (Extreme.Mathematics.LinearAlgebra.MatrixOperationSide)
- A MatrixOperationSide value that indicates whether the matrix matrix is the left or right operand of the multiplication.
Return Value
A reference to this instance.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | matrix is nullNothingnullptr |
| DimensionMismatchException |
The number of rows or columns of matrix does not equal the length of this instance.
-or- matrix is not a square matrix. |