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