Click or drag to resize

VectorTModulus(T, VectorT) Operator

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

Return Value

VectorT

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

Exceptions
ExceptionCondition
ArgumentNullExceptionIf dividend is .
See Also