DiagonalMatrix<T> Operators

Operators

AdditionAssignment(T) Adds a scalar to a matrix.
(Inherited from Matrix<T>)
AdditionAssignment(Matrix<T>) Adds another matrix to this matrix in-place.
(Inherited from Matrix<T>)
DivisionAssignment(T) Divides a matrix in-place by a scalar.
(Inherited from Matrix<T>)
MultiplicationAssignment(T) Multiplies a matrix in-place by the specified factor.
(Inherited from Matrix<T>)
Multiply(DenseMatrix<T>, DiagonalMatrix<T>) Multiplies a matrix on the right by a DiagonalMatrix<T>..
Multiply(DiagonalMatrix<T>, Matrix<T>) Multiplies a matrix on the left by a DiagonalMatrix<T>..
SubtractionAssignment(T) Subtracts a scalar value from the elements of this matrix in-place.
(Inherited from Matrix<T>)
SubtractionAssignment(Matrix<T>) Subtracts another matrix from this matrix in-place.
(Inherited from Matrix<T>)

See Also