Click or drag to resize

VectorTDivision(VectorT, VectorT) Operator

Pointwise divides two Vectors.

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

Parameters

dividend  VectorT
The vector to divide.
divisor  VectorT
The other vector.

Return Value

VectorT
The result of the division.
Exceptions
ExceptionCondition
ArgumentExceptionIf dividend and divisor are not the same size.
ArgumentNullExceptionIf dividend is .
See Also