21 articles 数学と三角関数

MathIsValidNumber

実数の正しさをチェックします。 bool  MathIsValidNumber(    double  number      // number to check    ); パラメーター 数 [in]チェックされた数…

MathLog

10を底とする数値の対数を返します。 double  MathLog10(    double  val      // number to take logarithm    ); パラメーター val [in]常用対…

平方根【MathSqrt】

double MathSqrt(double x)   The MathSqrt function returns the square root of x. If x is negative, MathSqr…

サイン【MathSin】

double MathSin(double value)   Returns the sine of the specified angle. 指定された角度のサインを返します。 Parameters: パラメ…

四捨五入【MathRound】

double MathRound(double value)   Returns value rounded to the nearest integer of the specified numeric va…

乱数【MathRand】

int MathRand( )   The MathRand function returns a pseudorandom integer within the range of 0 to 32767. Th…

べき乗【MathPow】

double MathPow(double base, double exponent)   Returns the value of the base expression raised to the spe…

剰余【MathMod】

double MathMod(double value1, double value2)   The function returns the floating-point remainder of divis…