Multiplies a matrix with a complex vector.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Overloads Shared Function Multiply( _
ByVal A As CMatrix, _
ByVal x As CVector _
) As CVector |
Parameters
- A
- A CMatrix object that represents the matrix to be multiplied.
- x
- A CVector object that represents the vector to multiply with.
Return Value
A
CMatrix that represents the result of the matrix-vector multiplication.
Exceptions
| Exception | Description |
| SizeMismatchException | The vector size does not match with the number of the matrix columns. |
Remarks
Requirements
Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7
See Also