该方法返回指定值的指数。
exp(X)
X - 为指数函数指定值。
返回值是表示指数值的浮点值。
-module(helloworld). -import(math,[exp/1]). -export([start/0]). start() -> Aexp = exp(3.14), io:fwrite("~p~n",[Aexp]).
当我们运行上述程序时,我们将得到以下结果。
23.103866858722185