mathLib.ldexp() システム関数は、乗数と 2 の累乗を入力として使用します。 この関数は、乗数に 2 の累乗 (指数を指定) を掛けた値を戻します。
mathLib.Ldexp(
multiplier FLOAT in,
exponent INT in)
returns (result FLOAT )
result = mathLib.Ldexp(myMultiplier,myExponent);
// result = myMultiplier * 2**myExponent