サンプルコード 一覧へ戻る

MQL5サンプルコード

【MT5(MQL5)サンプルコード】MathLog10

スポンサーリンク / Sponsored links

MT4(MQL4)/MT5(MQL5)のMathLog10

数の底が10の対数を返す関数です。

double  MathLog10(
  double  val      // 対数を取る値
  );

MT4→MT5に変わっても変わらず使えます。

log10()でも同じ結果が得られます。

サンプルコード

void OnInit()  
{

  Print("MathLog10(-1) = ",MathLog10(-1));
  Print("MathLog10(0) = ",MathLog10(0));
  Print("MathLog10(1) = ",MathLog10(1));
  Print("MathLog10(2) = ",MathLog10(2));
  Print("MathLog10(3) = ",MathLog10(3));
  
   return;
}

結果

MathLog10(-1) = -nan(ind)
MathLog10(0) = -inf
MathLog10(1) = 0.0
MathLog10(2) = 0.3010299956639812
MathLog10(3) = 0.4771212547196624

コメント / Comments

タイトルとURLをコピーしました