The EXP()
function returns the mathematical e
raised to the power of a specific number. Here, e
is the base of the natural logarithm. Figure 1 shows the mathematical representation of the EXP()
function.
EXP(number)
This function requires a number as a parameter.
EXP()
returns the mathematical e
raised to the power of the specific number sent as a parameter.
/*example showing how to use EXP(number)*/-- positive numberselect EXP(10);-- negative numberselect EXP(-3);-- zero numberselect EXP(0);