ComplexMatrixMultiply Method (Complex) |
Returns the result of the multiplication of this matrix and a vector.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic Complex[] Multiply(
Complex[] vector
)
Public Function Multiply (
vector As Complex()
) As Complex()
public:
array<Complex>^ Multiply(
array<Complex>^ vector
)
member Multiply :
vector : Complex[] -> Complex[]
Parameters
- vector
- Type: AGI.Foundation.CoordinatesComplex
The vector to be multiplied.
Return Value
Type:
ComplexThe resultant vector.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException |
Thrown when vector is .
|
| InvalidOperationException |
Thrown when the length of vector does not match the column dimension of this ComplexMatrix.
|
See Also