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