R/pow2.R

Defines functions pow2

Documented in pow2

###
### $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
}

Try the matlab package in your browser

Any scripts or data that you put into this service are public.

matlab documentation built on July 1, 2024, 5:07 p.m.