R/inches.R

Defines functions inches

Documented in inches

#' Translates from cm (centimeters) to inches.
#' 
#' 
#' Translates from cm (centimeters) to inches.
#' 
#' 
#' @param cm Numeric vector of centimeter.
#' @return A vector with inches.
#' @export
inches <- function(cm) {
    cm * 0.393700787
}
lbraglia/yapomif documentation built on May 20, 2019, 11:26 p.m.