double MathMod(double value1, double value2)
The function returns the floating-point remainder of division of two numbers.
この関数は2つの数値を除算した浮動小数点数の剰余を返します。
The MathMod function calculates the floating-point remainder f of x / y such that x = i * y + f , where i is an integer, f has the same sign as x, and the absolute value of f is less than the absolute value of y.
MathMod 関数は、x / y の剰余 f を浮動小数点数で計算します。これは、x = i * y + f のように、i は整数で、f は x と同じ符号を持ち、f の絶対値は y の絶対値より少ない値となります。
Parameters:
パラメータ:
Sample:
サンプル: