Click or drag to resize

DoubleUpperTriMatrix Methods

The DoubleUpperTriMatrix type exposes the following members.

Methods
 NameDescription
Public methodStatic memberAdd(Double, DoubleUpperTriMatrix) Adds a scalar and an upper triangular matrix.
Public methodStatic memberAdd(DoubleUpperTriMatrix, DoubleUpperTriMatrix) Adds two upper triangular matrices.
Public methodStatic memberAdd(DoubleUpperTriMatrix, Double) Adds an upper triangular matrix and a scalar.
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(Double, DoubleUpperTriMatrix) Divide a scalar by an upper triangular matrix.
Public methodStatic memberDivide(DoubleUpperTriMatrix, DoubleUpperTriMatrix) Divide an upper triangular matrix by another.
Public methodStatic memberDivide(DoubleUpperTriMatrix, Double) Divide an upper triangular matrix by a scalar.
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(Double, DoubleUpperTriMatrix) Multiply a scalar and an upper triangular matrix.
Public methodStatic memberMultiply(DoubleUpperTriMatrix, DoubleUpperTriMatrix) Multiply two upper triangular matrices.
Public methodStatic memberMultiply(DoubleUpperTriMatrix, Double) Multiply an upper triangular matrix and a scalar.
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(Double, DoubleUpperTriMatrix) Subtracts an upper triangular matrix from a scalar.
Public methodStatic memberSubtract(DoubleUpperTriMatrix, DoubleUpperTriMatrix) Subtracts one upper triangular matrix from another.
Public methodStatic memberSubtract(DoubleUpperTriMatrix, Double) Subtracts a scalar from an upper triangular matrix.
Public methodCode exampleToCommaSeparated Returns a formatted string representation of this matrix using tabs and newlines.
Public methodCode exampleToCommaSeparated(String) Returns a formatted string representation of this matrix using tabs and newlines. Numbers are formatted using the specified format string.
Public methodToGeneralMatrix Converts this triangular matrix to a general matrix.
Public methodCode exampleToString Returns a formatted string representation of this matrix.

ToCommaSeparated

ToCommaSeparated(String)

ToTabDelimited

ToTabDelimited(String)


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

ToCommaSeparated

ToCommaSeparated(String)

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