| DoubleComplexMatrix Operators and Type Conversions |
The DoubleComplexMatrix type exposes the following members.
Operators | Name | Description |
---|
| Addition(DoubleComplex, DoubleComplexMatrix) |
Adds a scalar and a matrix.
|
| Addition(DoubleComplexMatrix, DoubleComplex) |
Adds a matrix and a scalar.
|
| Addition(DoubleComplexMatrix, DoubleComplexMatrix) |
Adds two matrices.
|
| Division(DoubleComplex, DoubleComplexMatrix) |
Divide a scalar by a matrix.
|
| Division(DoubleComplexMatrix, DoubleComplex) |
Divide a matrix by a scalar.
|
| Division(DoubleComplexMatrix, DoubleComplexMatrix) |
Divide a matrix by another.
|
| Equality(DoubleComplexMatrix, DoubleComplexMatrix) |
Tests for equality of two matrices. Two matrices are equal if they
have the same dimensions and all values are equal.
|
| (DoubleMatrix to DoubleComplexMatrix) |
Implicitly converts a DoubleMatrix instance into a DoubleComplexMatrix instance.
|
| (FloatComplexMatrix to DoubleComplexMatrix) |
Implicitly converts a FloatComplexMatrix instance into a
DoubleComplexMatrix instance.
|
| Inequality(DoubleComplexMatrix, DoubleComplexMatrix) |
Tests for inequality of two matrices. Two matrices are not equal if they
have different dimensions or their values are not all equal.
|
| Multiply(DoubleComplex, DoubleComplexMatrix) |
Multiply a scalar and a matrix.
|
| Multiply(DoubleComplexMatrix, DoubleComplex) |
Multiply a matrix and a scalar.
|
| Multiply(DoubleComplexMatrix, DoubleComplexMatrix) |
Multiplies two matrices.
|
| Subtraction(DoubleComplex, DoubleComplexMatrix) |
Subtracts a matrix from a scalar.
|
| Subtraction(DoubleComplexMatrix, DoubleComplex) |
Subtracts a scalar from a matrix.
|
| Subtraction(DoubleComplexMatrix, DoubleComplexMatrix) |
Subtracts one matrix from another.
|
| UnaryNegation(DoubleComplexMatrix) |
Negation operator.
|
| UnaryPlus(DoubleComplexMatrix) |
Unary + operator. Just returns the input matrix.
|
TopSee Also