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