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.Double
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DenseVector operator %(
	DenseVector leftSide,
	double rightSide
)

Parameters

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

Return Value

DenseVector

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Double.DenseVector.op_Modulus(Altaxo.Calc.LinearAlgebra.Double.DenseVector,System.Double)"]

Exceptions
ExceptionCondition
ArgumentNullExceptionIf leftSide is .
See Also