ComplexMatrixDivide(ComplexMatrix, ReadOnlyDoubleMatrix) Method

Determines the division of a matrix by another.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static ComplexMatrix Divide(
	ComplexMatrix left,
	ReadOnlyDoubleMatrix right
)

Parameters

left  ComplexMatrix
The left operand.
right  ReadOnlyDoubleMatrix
The right operand.

Return Value

ComplexMatrix
The result of dividing left by right.

Remarks

Let LaTeX equation and LaTeX equation be the left number of rows and columns, respectively, and consider its generic entry

LaTeX equation

Analogously, Let LaTeX equation and LaTeX equation be the right number of rows and columns, respectively, and let its generic entry given by

LaTeX equation

The method operates as follows.

  • If left is scalar, then the method returns a matrix having the same dimensions of right, whose generic entry is:

    LaTeX equation

  • If right is scalar, then the method returns a matrix having the same dimensions of left, whose generic entry is:

    LaTeX equation

  • If neither left nor right is scalar, then the method interprets the division of left by right as the solution LaTeX equation of the following system of simultaneous equations:

    LaTeX equation

    provided that both left and right have the same number of columns; otherwise, an exception is thrown.

    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.

Exceptions

ArgumentNullExceptionleft is null.
-or-
right is null.
ArgumentException Both left and right are not scalar matrices, and any of the following conditions holds true:
  • left and right have not the same number of columns;
  • right is not square and has not full rank.

See Also