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