Exponentiate x to power y

Exp(x, y)

Arguments

x

Numeric vector or scalar

y

Numeric scalar

Value

vector with same length as x, x^y

Examples


all.equal(Exp(exp(1), 5),  exp(5) )
#> [1] TRUE
Ln(Exp(exp(1), 10)) ==10
#> [1] TRUE