Click or drag to resize

VectorTDivision(T, VectorT) Operator

Divides a scalar with a vector.

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

Parameters

dividend  T
The scalar to divide.
divisor  VectorT
The vector.

Return Value

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