Click or drag to resize

DoubleComplexLowerTriMatrix Class

Class DoubleComplexLowerTriMatrix represents a lower triangular matrix of double-precision complex numbers. A lower triangular matrix is a square matrix with all elements above the main diagonal equal to zero.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreDoubleComplexLowerTriMatrix

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class DoubleComplexLowerTriMatrix : ICloneable

The DoubleComplexLowerTriMatrix type exposes the following members.

Constructors
 NameDescription
Public methodDoubleComplexLowerTriMatrix(DoubleComplexMatrix) Constructs a square DoubleComplexLowerTriMatrix instance by extracting the lower triangular part of a square general matrix.
Public methodDoubleComplexLowerTriMatrix(DoubleComplexVector) Constructs a square DoubleComplexLowerTriMatrix instance using the data in the given vector.
Public methodDoubleComplexLowerTriMatrix(DoubleHermitianMatrix) Constructs a square DoubleComplexLowerTriMatrix instance by extracting the lower triangular part of an Hermitian matrix.
Public methodDoubleComplexLowerTriMatrix(Int32) Constructs a square DoubleComplexLowerTriMatrix instance with the specified size. All elements are initialized to zero.
Public methodDoubleComplexLowerTriMatrix(DoubleComplexMatrix, Int32) Constructs a square DoubleComplexLowerTriMatrix instance by extracting the lower triangular part of the specified leading square submatrix of a general matrix.
Public methodDoubleComplexLowerTriMatrix(DoubleComplexVector, Int32) Constructs a square DoubleComplexLowerTriMatrix instance with the specified size, and using the data in the given vector.
Top
Properties
 NameDescription
Public propertyCols Gets the number of columns in the matrix.
Public propertyDataVector Gets the data vector referenced by this matrix.
Public propertyItem Gets and sets the value at the specified position. Zero matrix elements are not stored, so assigning a non-zero value to a matrix element above the diagonal of the matrix raises an exception.
Public propertyOrder Gets the order of the matrix.
Public propertyRows Gets the number of rows in the matrix.
Top
Methods
 NameDescription
Public methodStatic memberAdd(DoubleComplex, DoubleComplexLowerTriMatrix) Adds a scalar and a lower triangular matrix.
Public methodStatic memberAdd(DoubleComplexLowerTriMatrix, DoubleComplex) Adds a lower triangular matrix and a scalar.
Public methodStatic memberAdd(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) 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(DoubleComplex, DoubleComplexLowerTriMatrix) Divide a scalar by a lower triangular matrix.
Public methodStatic memberDivide(DoubleComplexLowerTriMatrix, DoubleComplex) Divide a lower triangular matrix by a scalar.
Public methodStatic memberDivide(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) 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(DoubleComplex, DoubleComplexLowerTriMatrix) Multiply a scalar and a lower triangular matrix.
Public methodStatic memberMultiply(DoubleComplexLowerTriMatrix, DoubleComplex) Multiply a lower triangular matrix and a scalar.
Public methodStatic memberMultiply(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) 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(DoubleComplex, DoubleComplexLowerTriMatrix) Subtracts a lower triangular matrix from a scalar.
Public methodStatic memberSubtract(DoubleComplexLowerTriMatrix, DoubleComplex) Subtracts a scalar from a lower triangular matrix.
Public methodStatic memberSubtract(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) 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
Operators
 NameDescription
Public operatorStatic memberAddition(DoubleComplex, DoubleComplexLowerTriMatrix) Adds a scalar and a lower triangular matrix.
Public operatorStatic memberAddition(DoubleComplexLowerTriMatrix, DoubleComplex) Adds a lower triangular matrix and a scalar.
Public operatorStatic memberAddition(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) Adds two lower triangular matrices.
Public operatorStatic memberDivision(DoubleComplex, DoubleComplexLowerTriMatrix) Divide a scalar by a lower triangular matrix.
Public operatorStatic memberDivision(DoubleComplexLowerTriMatrix, DoubleComplex) Divide a lower triangular matrix by a scalar.
Public operatorStatic memberDivision(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) Divide a lower triangular matrix by another.
Public operatorStatic memberEquality(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) Tests for equality of two lower triangular matrices. Two matrices are equal if they have the same dimensions and all values are equal.
Public operatorStatic member(DoubleLowerTriMatrix to DoubleComplexLowerTriMatrix) Implicitly converts a DoubleLowerTriMatrix instance into a DoubleComplexLowerTriMatrix instance.
Public operatorStatic member(FloatComplexLowerTriMatrix to DoubleComplexLowerTriMatrix) Implicitly converts a FloatComplexLowerTriMatrix instance into a DoubleComplexLowerTriMatrix instance.
Public operatorStatic memberInequality(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) Tests for inequality of two lower triangular matrices. Two matrices are equal if they have the same dimensions and all values are equal.
Public operatorStatic memberMultiply(DoubleComplex, DoubleComplexLowerTriMatrix) Multiply a scalar and a lower triangular matrix.
Public operatorStatic memberMultiply(DoubleComplexLowerTriMatrix, DoubleComplex) Multiply a lower triangular matrix and a scalar.
Public operatorStatic memberMultiply(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) Multiply two lower triangular matrices.
Public operatorStatic memberSubtraction(DoubleComplex, DoubleComplexLowerTriMatrix) Subtracts a lower triangular matrix from a scalar.
Public operatorStatic memberSubtraction(DoubleComplexLowerTriMatrix, DoubleComplex) Subtracts a scalar from a lower triangular matrix.
Public operatorStatic memberSubtraction(DoubleComplexLowerTriMatrix, DoubleComplexLowerTriMatrix) Subtracts one lower triangular matrix from another.
Public operatorStatic memberUnaryNegation(DoubleComplexLowerTriMatrix) Negation operator.
Public operatorStatic memberUnaryPlus(DoubleComplexLowerTriMatrix) Unary + operator. Just returns the input matrix.
Top
Remarks
The matrix is stored in a vector row by row. For efficiency, zero elements are not stored. For example, the following 5 by 5 lower triangular matrix:
C#
    | a00 0   0   0   0   |
    | a10 a11 0   0   0   |
A = | a20 a21 a22 0   0   |
    | a30 a31 a32 a33 0   |
    | a40 a41 a42 a43 a44 |
is stored in a data vector v as:
C#
v = [a00 a10 a11 a20 a21 a22 a30 a31 a32 a33 a40 a41 a42 a43 a44 ]
In general, A[i,j] = v[i(i+1)/2 + j].
See Also