Click or drag to resize

FortranLibDMod Method

Summary: Returns the remainder resulting from the division of a specified number by another specified number. Parameters: y: A divisor. x: A dividend. Returns: A number equal to x - (y Q), where Q = Math.Truncate(x/y)

Namespace: Altaxo.Calc.Ode.Obsolete
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double DMod(
	double a1,
	double a2
)

Parameters

a1  Double
A divisor.
a2  Double
A dividend.

Return Value

Double
A number equal to x - (y Q), where Q = Math.Truncate(x/y)
See Also