Click or drag to resize

DoubleMatrix Operators and Type Conversions

The DoubleMatrix type exposes the following members.

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