Nothing
###
### $Id: pow2.R 29 2022-05-30 23:02:22Z proebuck $
###
### Raise 2 to some power.
###
##-----------------------------------------------------------------------------
pow2 <- function(f, e) {
if (!(is.numeric(f) || is.complex(f))) {
stop(sprintf("argument %s must be numeric or complex",
sQuote("f")))
}
if (missing(e)) {
e <- f
f <- rep(1, length(e))
} else {
if (!(is.numeric(e) || is.complex(e))) {
stop(sprintf("Argument %s must be numeric or complex",
sQuote("e")))
}
if (is.complex(f) || is.complex(e)) {
f <- Re(f)
e <- Re(e)
warning("imaginary part of complex arguments ignored")
}
}
if (length(f) != length(e)) {
stop(sprintf("Arguments %s and %s must be of same length",
sQuote("f"),
sQuote("e")))
}
f * 2^e
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.