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

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

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

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

 
Sub mathDemo4()
   Debug.Print Exp(5)
End Sub



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

 
Sub mathF2()
    Debug.Print Exp(1)
End Sub