Click or drag to resize

VectorTModulus(VectorT, VectorT) Operator

Computes the pointwise remainder (% operator), where the result has the sign of the dividend, of each element of 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 whose elements we want to compute the remainder of.
divisor  VectorT
The divisor to use.

Return Value

VectorT

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Vector`1.op_Modulus(Altaxo.Calc.LinearAlgebra.Vector{`0},Altaxo.Calc.LinearAlgebra.Vector{`0})"]

Exceptions
ExceptionCondition
ArgumentExceptionIf dividend and divisor are not the same size.
ArgumentNullExceptionIf dividend is .
See Also