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