Click or drag to resize

SparseVectorModulus 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 SparseVector operator %(
	SparseVector leftSide,
	float rightSide
)

Parameters

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

Return Value

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