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