VBA/Excel/Access/Word/Math Functions/Exp

Материал из VB Эксперт
Версия от 15:46, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Exp(number) returns e, the base of natural logarithms, raised to the power of number.

   <source lang="vb">

Sub mathDemo4()

  Debug.Print Exp(5)

End Sub

</source>
   
  


Exp() Returns the base e exponential of a number.

   <source lang="vb">

Sub mathF2()

   Debug.Print Exp(1)

End Sub

</source>