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