raise.Rd
This function raises a vector or a list of numbers to any power.
raise(x, to)
x | Vector or list of numbers. |
---|---|
to | Power to raise |
A vector (atomic, double) of the input raised to the specified power.
raise(1:4, to = 2)#> [1] 1 4 9 16raise(2, to = 1:4)#> [1] 2 4 8 16#> [1] 1 4 9 16