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