Click or drag to resize

MatrixTDivision(T, MatrixT) Operator

Divides a scalar with a matrix.

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 /(
	T dividend,
	Matrix<T> divisor
)

Parameters

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

Return Value

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