 | DoubleComplexBandMatrix Operators and Type Conversions |
The DoubleComplexBandMatrix type exposes the following members.
Operators | Name | Description |
---|
  | Addition(DoubleComplex, DoubleComplexBandMatrix) |
Adds a scalar to the non-zero elements of a banded matrix.
|
  | Addition(DoubleComplexBandMatrix, DoubleComplex) |
Adds a scalar to the non-zero elements of a banded matrix.
|
  | Addition(DoubleComplexBandMatrix, DoubleComplexBandMatrix) |
Adds two banded matrices.
|
  | Division(DoubleComplex, DoubleComplexBandMatrix) |
Divides a scalar by the non-zero elements of a banded matrix.
|
  | Division(DoubleComplexBandMatrix, DoubleComplex) |
Divides the non-zero elements of a banded matrix by a scalar.
|
  | Division(DoubleComplexBandMatrix, DoubleComplexBandMatrix) |
Divides a banded matrix by another.
|
  | Equality(DoubleComplexBandMatrix, DoubleComplexBandMatrix) |
Tests for equality of two banded matrices. Two matrices are equal if they
have the same dimensions, upper and lower bandwidths, and all values are equal.
|
  | (DoubleBandMatrix to DoubleComplexBandMatrix) |
Implicitly converts a DoubleBandMatrix instance into a DoubleComplexBandMatrix
instance.
|
  | (FloatComplexBandMatrix to DoubleComplexBandMatrix) |
Implicitly converts a FloatComplexBandMatrix instance into a DoubleComplexBandMatrix
instance.
|
  | Inequality(DoubleComplexBandMatrix, DoubleComplexBandMatrix) |
Tests for equality of two banded matrices. Two matrices are equal if they
have the same dimensions, upper and lower bandwidths, and all values are equal.
|
  | Multiply(DoubleComplex, DoubleComplexBandMatrix) |
Multiplies the non-zero elements of a banded matrix by a scalar.
|
  | Multiply(DoubleComplexBandMatrix, DoubleComplex) |
Multiplies the non-zero elements of a banded matrix and a scalar.
|
  | Multiply(DoubleComplexBandMatrix, DoubleComplexBandMatrix) |
Multiplies two banded matrices.
|
  | Subtraction(DoubleComplex, DoubleComplexBandMatrix) |
Subtracts the non-zero elements of a banded matrix from a scalar.
|
  | Subtraction(DoubleComplexBandMatrix, DoubleComplex) |
Subtracts a scalar from the non-zero elements of a banded matrix.
|
  | Subtraction(DoubleComplexBandMatrix, DoubleComplexBandMatrix) |
Subtracts two banded matrices.
|
  | UnaryNegation(DoubleComplexBandMatrix) |
Negation operator.
|
  | UnaryPlus(DoubleComplexBandMatrix) |
Unary + operator. Just returns the input matrix.
|
Top
See Also