R/EE.R

Defines functions EE

Documented in EE

#' Scientific notation
#'
#' Allows numbers to be quickly entered in scientific notation.
#' @export
EE <- function(base, power){
     base*10^power
}
alitvak3/a3personal documentation built on April 6, 2021, 4:53 a.m.