Click or drag to resize

DenseVectorModulus Operator

Computes the remainder (% operator), where the result has the sign of the dividend, of each element of the vector of the given divisor.

Namespace: Altaxo.Calc.LinearAlgebra.Single
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DenseVector operator %(
	DenseVector leftSide,
	float rightSide
)

Parameters

leftSide  DenseVector
The vector whose elements we want to compute the modulus of.
rightSide  Single
The divisor to use,

Return Value

DenseVector
The result of the calculation
Exceptions
ExceptionCondition
ArgumentNullExceptionIf leftSide is .
See Also