Click or drag to resize

MatrixTDivision(MatrixT, T) Operator

Divides a matrix with a scalar.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Matrix<T> operator /(
	Matrix<T> dividend,
	T divisor
)

Parameters

dividend  MatrixT
The matrix to divide.
divisor  T
The scalar value.

Return Value

MatrixT
The result of the division.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf dividend is .
See Also