 | DoubleComplexUpperTriMatrix Operators and Type Conversions |
The DoubleComplexUpperTriMatrix type exposes the following members.
Operators | Name | Description |
---|
  | Addition(DoubleComplex, DoubleComplexUpperTriMatrix) |
Adds a scalar and an upper triangular matrix.
|
  | Addition(DoubleComplexUpperTriMatrix, DoubleComplex) |
Adds an upper triangular matrix and a scalar.
|
  | Addition(DoubleComplexUpperTriMatrix, DoubleComplexUpperTriMatrix) |
Adds two upper triangular matrices.
|
  | Division(DoubleComplex, DoubleComplexUpperTriMatrix) |
Divide a scalar by an upper triangular matrix.
|
  | Division(DoubleComplexUpperTriMatrix, DoubleComplex) |
Divide an upper triangular matrix by a scalar.
|
  | Division(DoubleComplexUpperTriMatrix, DoubleComplexUpperTriMatrix) |
Divide an upper triangular matrix by another.
|
  | Equality(DoubleComplexUpperTriMatrix, DoubleComplexUpperTriMatrix) |
Tests for equality of two upper triangular matrices. Two matrices are equal if they
have the same dimensions and all values are equal.
|
  | (DoubleUpperTriMatrix to DoubleComplexUpperTriMatrix) |
Implicitly converts a DoubleUpperTriMatrix instance into a DoubleComplexUpperTriMatrix
instance.
|
  | (FloatComplexUpperTriMatrix to DoubleComplexUpperTriMatrix) |
Implicitly converts a FloatComplexUpperTriMatrix instance into a
DoubleComplexUpperTriMatrix instance.
|
  | Inequality(DoubleComplexUpperTriMatrix, DoubleComplexUpperTriMatrix) |
Tests for inequality of two upper triangular matrices. Two matrices are equal if they
have the same dimensions and all values are equal.
|
  | Multiply(DoubleComplex, DoubleComplexUpperTriMatrix) |
Multiply a scalar and an upper triangular matrix.
|
  | Multiply(DoubleComplexUpperTriMatrix, DoubleComplex) |
Multiply an upper triangular matrix and a scalar.
|
  | Multiply(DoubleComplexUpperTriMatrix, DoubleComplexUpperTriMatrix) |
Multiply two upper triangular matrices.
|
  | Subtraction(DoubleComplex, DoubleComplexUpperTriMatrix) |
Subtracts an upper triangular matrix from a scalar.
|
  | Subtraction(DoubleComplexUpperTriMatrix, DoubleComplex) |
Subtracts a scalar from an upper triangular matrix.
|
  | Subtraction(DoubleComplexUpperTriMatrix, DoubleComplexUpperTriMatrix) |
Subtracts one upper triangular matrix from another.
|
  | UnaryNegation(DoubleComplexUpperTriMatrix) |
Negation operator.
|
  | UnaryPlus(DoubleComplexUpperTriMatrix) |
Unary + operator. Just returns the input matrix.
|
Top
See Also