Click or drag to resize

VectorTPointwiseDivide(VectorT) Method

Pointwise divide this vector with another vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Vector<T> PointwiseDivide(
	Vector<T> divisor
)

Parameters

divisor  VectorT
The pointwise denominator vector to use.

Return Value

VectorT
A new vector which is the pointwise division of the two vectors.
Exceptions
ExceptionCondition
ArgumentExceptionIf this vector and divisor are not the same size.
See Also