Click or drag to resize

DoubleComplexBandMatrix Methods

The DoubleComplexBandMatrix type exposes the following members.

Methods
 NameDescription
Public methodStatic memberAdd(DoubleComplex, DoubleComplexBandMatrix) Adds a scalar to the non-zero elements of a banded matrix.
Public methodStatic memberAdd(DoubleComplexBandMatrix, DoubleComplex) Adds a scalar to the non-zero elements of a banded matrix.
Public methodStatic memberAdd(DoubleComplexBandMatrix, DoubleComplexBandMatrix) Adds two banded matrices.
Public methodClone Creates a deep copy of this matrix.
Public methodConjTranspose Returns the conjugate transpose 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 methodDiagonal Returns a vector view of the main diagonal of this matrix.
Public methodDiagonal(Int32) Returns a vector view of a diagonal of this matrix.
Public methodStatic memberDivide(DoubleComplex, DoubleComplexBandMatrix) Divides a scalar by the non-zero elements of a banded matrix.
Public methodStatic memberDivide(DoubleComplexBandMatrix, DoubleComplex) Divides the non-zero elements of a banded matrix by a scalar.
Public methodStatic memberDivide(DoubleComplexBandMatrix, DoubleComplexBandMatrix) 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, bandwidths 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.
Public methodStatic memberMultiply(DoubleComplex, DoubleComplexBandMatrix) Multiplies the non-zero elements of a banded matrix by a scalar.
Public methodStatic memberMultiply(DoubleComplexBandMatrix, DoubleComplex) Multiplies the non-zero elements of a banded matrix and a scalar.
Public methodStatic memberMultiply(DoubleComplexBandMatrix, DoubleComplexBandMatrix) Multiplies two banded matrices.
Public methodStatic memberNegate Negation operator.
Public methodResize(Int32, Int32) Changes the dimensions of this matrix to those specified, adding zeros or truncating as necessary.
Public methodResize(Int32, Int32, Int32, Int32) Changes the dimensions and bandwidths of this matrix to those specified, adding zeros or truncating as necessary.
Public methodShallowCopy Creates a shallow copy of this matrix.
Public methodStatic memberSubtract(DoubleComplex, DoubleComplexBandMatrix) Subtracts the non-zero elements of a banded matrix from a scalar.
Public methodStatic memberSubtract(DoubleComplexBandMatrix, DoubleComplex) Subtracts a scalar from the non-zero elements of a banded matrix.
Public methodStatic memberSubtract(DoubleComplexBandMatrix, DoubleComplexBandMatrix) Subtracts two banded matrices.
Public methodToGeneralMatrix Converts this banded matrix to a general matrix.
Public methodCode exampleToString Returns a formatted string representation of this matrix.

You can also use these methods to format a 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.

You can also use these methods to format a matrix:

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. Numbers are displayed using the specified format.
Public methodTranspose Returns the transpose of this matrix.
Top
See Also