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: DotNumerics.FortranLibraryAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static double DMod(
double a1,
double a2
)
Public Shared Function DMod (
a1 As Double,
a2 As Double
) As Double
Request Example
View SourceParameters
- a1 Double
- A divisor.
- a2 Double
- A dividend.
Return Value
DoubleA number equal to x - (y Q), where Q = Math.Truncate(x/y)
See Also