R/Cone.R

Defines functions Cone

Documented in Cone

#' @title Estimate biovolume with cone equation
#' @description Estimate the biovolume of individuals with cone equation.
#'
#' @param Length Length of an organism
#' @param Width Width of an organism
#'
#' @return
#' @export
#'
#' @examples
#' Cone(30, 1)
Cone <- function(Length, Width) {
  Length * (Width / 2) * (Width / 2) * pi / 3
}
chenyenting1998/ecomaestro documentation built on Dec. 19, 2021, 3:04 p.m.