|  | Float | 
The FloatLowerTriMatrix type exposes the following members.
 Methods
Methods| Name | Description | |
|---|---|---|
|   | Add(FloatLowerTriMatrix, FloatLowerTriMatrix) | Adds two lower triangular matrices. | 
|   | Add(FloatLowerTriMatrix, Single) | Adds a lower triangular matrix and a scalar. | 
|   | Add(Single, FloatLowerTriMatrix) | Adds a scalar and a lower triangular matrix. | 
|  | Clone | Creates a deep copy of this matrix. | 
|  | DeepenThisCopy | Guarantees that there is only one reference to the underlying data and that this data is in contiguous storage. | 
|   | Divide(FloatLowerTriMatrix, FloatLowerTriMatrix) | Divide a lower triangular matrix by another. | 
|   | Divide(FloatLowerTriMatrix, Single) | Divide a lower triangular matrix by a scalar. | 
|   | Divide(Single, FloatLowerTriMatrix) | Divide a scalar by a lower triangular matrix. | 
|  | Equals | Tests for equality of this matrix and another matrix.
            Two matrices are equal if they have the same dimensions
            and all values are equal. (Overrides ObjectEquals(Object)) | 
|  | GetHashCode | Returns an integer hash code for this matrix. (Overrides ObjectGetHashCode) | 
|  | LeadingSubmatrix | Returns the k by k upper left corner of the matrix. The matrix and the submatrix share the same data. | 
|   | 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. | 
|   | Negate | Negation operator. | 
|  | OnDeserialized | Checks that the matrix is square following deserialization | 
|  | Resize | Changes the order of this matrix to that specified, adding zeros or truncating as necessary. | 
|  | ShallowCopy | Creates a shallow copy of this matrix. | 
|   | Subtract(FloatLowerTriMatrix, FloatLowerTriMatrix) | Subtracts one lower triangular matrix from another. | 
|   | Subtract(FloatLowerTriMatrix, Single) | Subtracts a scalar from a lower triangular matrix. | 
|   | Subtract(Single, FloatLowerTriMatrix) | Subtracts a lower triangular matrix from a scalar. | 
|   | ToCommaSeparated | Returns a formatted string representation of this matrix using tabs and newlines. | 
|   | ToCommaSeparated(String) | Returns a formatted string representation of this matrix using tabs and newlines. Numbers are formatted using the specified format string. | 
|  | ToGeneralMatrix | Converts this triangular matrix to a general matrix. | 
|   | ToString | Returns a formatted string representation of this matrix. (Overrides ObjectToString) | 
|   | ToString(String) | Returns a formatted string representation of this matrix. Numbers are displayed using the specified format. | 
|   | ToTabDelimited | Returns a formatted string representation of this matrix using tabs and newlines. | 
|   | ToTabDelimited(String) | Returns a formatted string representation of this matrix using tabs and newlines. Numbers are formatted using the specified format string. | 
|  | Transpose | Transposes this matrix. | 
 See Also
See Also