Click or drag to resize

DoubleHermitianBandMatrix Methods

The DoubleHermitianBandMatrix type exposes the following members.

Methods
 NameDescription
Public methodStatic memberAdd Adds two banded 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(DoubleComplex, DoubleHermitianBandMatrix) Divides a scalar by the non-zero elements of a banded matrix.
Public methodStatic memberDivide(DoubleHermitianBandMatrix, DoubleComplex) Divides the non-zero elements of a banded matrix by a scalar.
Public methodStatic memberDivide(DoubleHermitianBandMatrix, DoubleHermitianBandMatrix) Divides a banded matrix by another.
Public methodEquals Tests for equality of this matrix and another matrix. Two matrices are equal if they have the same dimensions, upper bandwidth and all values are equal.
(Overrides ObjectEquals(Object))
Public methodGetHashCode Returns an integer hash code for this matrix.
(Overrides ObjectGetHashCode)
Public methodIsDiagonalReal Determines if the main diagonal elements are real values.
Public methodLeadingSubmatrix Returns the k by k upper left corner of the matrix.
Public methodMakeDiagonalReal Sets the imaginary parts on the main diagonal to zero thereby meeting the strict definition of an Hermitian banded matrix.
Public methodStatic memberMultiply(DoubleComplex, DoubleHermitianBandMatrix) Multiplies the non-zero elements of a banded matrix by a scalar.
Public methodStatic memberMultiply(DoubleHermitianBandMatrix, DoubleComplex) Multiplies the non-zero elements of a banded matrix and a scalar.
Public methodStatic memberMultiply(DoubleHermitianBandMatrix, DoubleHermitianBandMatrix) Multiplies two banded matrices.
Public methodStatic memberNegate Negation operator.
Public methodResize(Int32) Changes the dimensions of this matrix to those specified, adding zeros or truncating as necessary.
Public methodResize(Int32, Int32) Changes the dimensions and half bandwidth of this matrix to those specified, adding zeros or truncating as necessary.
Public methodShallowCopy Creates a shallow copy of this matrix.
Public methodStatic memberSubtract Subtracts two banded matrices.
Public methodToGeneralMatrix Converts this banded Hermitian 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 the matrix.
Top
See Also