VBA/Excel/Access/Word/Math Functions/Log — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 15:46, 26 мая 2010

Log(number) returns The natural logarithm of number.

   <source lang="vb">

Sub mathDemo9()

  Debug.Print Log(2)

End Sub

</source>
   
  


Log() Returns the natural logarithm of a number.

   <source lang="vb">

Sub mathF5()

   Debug.Print Log(2.718281828)

End Sub

</source>