Click or drag to resize

FloatComplexLowerTriMatrix Methods

The FloatComplexLowerTriMatrix type exposes the following members.

Methods
 NameDescription
Public methodStatic memberAdd(FloatComplex, FloatComplexLowerTriMatrix) Adds a scalar and a lower triangular matrix.
Public methodStatic memberAdd(FloatComplexLowerTriMatrix, FloatComplex) Adds a lower triangular matrix and a scalar.
Public methodStatic memberAdd(FloatComplexLowerTriMatrix, FloatComplexLowerTriMatrix) Adds two lower triangular matrices.
Public methodClone Creates a deep copy of this matrix.
Public methodDeepenThisCopy Guarantees that there is only one reference to the underlying data and that this data is in contiguous storage.
Public methodStatic memberDivide(FloatComplex, FloatComplexLowerTriMatrix) Divide a scalar by a lower triangular matrix.
Public methodStatic memberDivide(FloatComplexLowerTriMatrix, FloatComplex) Divide a lower triangular matrix by a scalar.
Public methodStatic memberDivide(FloatComplexLowerTriMatrix, FloatComplexLowerTriMatrix) Divide a lower triangular matrix by another.
Public methodEquals 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))
Public methodGetHashCode Returns an integer hash code for this matrix.
(Overrides ObjectGetHashCode)
Public methodLeadingSubmatrix Returns the k by k upper left corner of the matrix. The matrix and the submatrix share the same data.
Public methodStatic memberMultiply(FloatComplex, FloatComplexLowerTriMatrix) Multiply a scalar and a lower triangular matrix.
Public methodStatic memberMultiply(FloatComplexLowerTriMatrix, FloatComplex) Multiply a lower triangular matrix and a scalar.
Public methodStatic memberMultiply(FloatComplexLowerTriMatrix, FloatComplexLowerTriMatrix) Multiply two lower triangular matrices.
Public methodStatic memberNegate Negation operator.
Public methodOnDeserialized Checks that the matrix is square following deserialization
Public methodResize Changes the order of this matrix to that specified, adding zeros or truncating as necessary.
Public methodShallowCopy Creates a shallow copy of this matrix.
Public methodStatic memberSubtract(FloatComplex, FloatComplexLowerTriMatrix) Subtracts a lower triangular matrix from a scalar.
Public methodStatic memberSubtract(FloatComplexLowerTriMatrix, FloatComplex) Subtracts a scalar from a lower triangular matrix.
Public methodStatic memberSubtract(FloatComplexLowerTriMatrix, FloatComplexLowerTriMatrix) Subtracts one lower triangular matrix from another.
Public methodToGeneralMatrix Converts this triangular matrix to a general matrix.
Public methodCode exampleToString Returns a formatted string representation of this matrix.

ToTabDelimited

ToTabDelimited(String)


(Overrides ObjectToString)
Public methodCode exampleToString(String) Returns a formatted string representation of this matrix. Numbers are displayed using the specified format.

ToTabDelimited

ToTabDelimited(String)

Public methodCode exampleToTabDelimited Returns a formatted string representation of this matrix using tabs and newlines.
Public methodCode exampleToTabDelimited(String) Returns a formatted string representation of this matrix using tabs and newlines. Numbers are formatted using the specified format string.
Public methodTranspose Transposes this matrix.
Top
See Also