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 float AMod(
float a1,
float a2
)
Public Shared Function AMod (
a1 As Single,
a2 As Single
) As Single
Request Example
View SourceParameters
- a1 Single
- A divisor.
- a2 Single
- A dividend.
Return Value
SingleA number equal to x - (y Q), where Q = Math.Truncate(x/y)
See Also