Matrix<T>.DivideInPlace Method

Divides a matrix in-place by a scalar.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> DivideInPlace(
	T factor
)

Parameters

factor  T
A number.

Return Value

Matrix<T>
A matrix whose elements are the corresponding elements of the matrix divided by factor.

See Also