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