Click or drag to resize

FloatMatrix Operators

The FloatMatrix type exposes the following members.

Operators
 NameDescription
Public operatorStatic memberAddition(FloatMatrix, FloatMatrix) Adds two matrices.
Public operatorStatic memberAddition(FloatMatrix, Single) Adds a matrix and a scalar.
Public operatorStatic memberAddition(Single, FloatMatrix) Adds a scalar and a matrix.
Public operatorStatic memberDecrement(FloatMatrix) Decrements each element of the input matrix.
Public operatorStatic memberDivision(FloatMatrix, FloatMatrix) Divide a matrix by another.
Public operatorStatic memberDivision(FloatMatrix, Single) Divide a matrix by a scalar.
Public operatorStatic memberDivision(Single, FloatMatrix) Divide a scalar by a matrix.
Public operatorStatic memberEquality(FloatMatrix, FloatMatrix) Tests for equality of two matrices. Two matrices are equal if they have the same dimensions and all values are equal.
Public operatorStatic memberIncrement(FloatMatrix) Increments each element of the given matrix.
Public operatorStatic memberInequality(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.
Public operatorStatic memberMultiply(FloatMatrix, FloatMatrix) Multiple two matrices.
Public operatorStatic memberMultiply(FloatMatrix, Single) Multiply a matrix and a scalar.
Public operatorStatic memberMultiply(Single, FloatMatrix) Multiple a scalar and a matrix.
Public operatorStatic memberSubtraction(FloatMatrix, FloatMatrix) Subtracts one matrix from another.
Public operatorStatic memberSubtraction(FloatMatrix, Single) Subtracts a scalar from a matrix.
Public operatorStatic memberSubtraction(Single, FloatMatrix) Subtracts a matrix from a scalar.
Public operatorStatic memberUnaryNegation(FloatMatrix) Negation operator.
Public operatorStatic memberUnaryPlus(FloatMatrix) Unary + operator. Just returns the input matrix.
Top
See Also