> Erlang中文手册 > exp/1 计算 e 的指数

math:exp/1

计算 e 的指数

用法:

exp(X)

计算 e 的指数,e 的自然对数底是 2.718281828459045

Exp = math:exp(1),
io:format("Exp is ~p~n", [Exp]).
Exp = math:exp(3.14),
io:format("Exp is ~p~n", [Exp]).