| Visual Basic (Declaration) | |
|---|---|
Overloads Public Operator *( _ ByVal A As Matrix, _ ByVal B As Matrix _ ) As Matrix | |
Parameters
- A
- A Matrix instance on the left side of the multiplication operator.
- B
- A Matrix instance on the right side of the multiplication operator.
Return Value
A Matrix object that represents the product.| Exception | Description |
|---|---|
| SizeMismatchException | Inner dimentions of matrices do not match. |
The inner dimensions of the matrices being multiplied must agree. That is, the number of columns in the first matrix must be equal to the number of rows in the second matrix.
Matrix multiplication is not commutative, A" B is not the same as B" A.
Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7