public static ComplexMatrix operator /(
ComplexMatrix left,
DoubleMatrix right
)
Public Shared Operator / (
left As ComplexMatrix,
right As DoubleMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ operator /(
ComplexMatrix^ left,
DoubleMatrix^ right
)
static let inline (/)
left : ComplexMatrix *
right : DoubleMatrix : ComplexMatrix
Let and
be the left
number of rows and columns, respectively, and consider its generic entry
Analogously, Let and
be the right
number of rows and columns, respectively, and let its generic entry given by
The method operates as follows.
If right is square, then the solution is computed differently for specific patterns. More thoroughly, if right is upper or lower triangular, then a back or forward substitution algorithm is executed, respectively, or, if right is symmetric, a Cholesky decomposition is tentatively applied; in every other case, the solution is obtained by LU decomposition of matrix right.
If right is not square, then the solution is computed by QR or LQ factorization of right, provided that it has full rank; otherwise, an exception is thrown.
ArgumentNullException | left is null. -or- right is null. |
ArgumentException |
Both left and right are not scalar
matrices, and any of the following conditions holds true:
|