Nothing
##
## Morgan-Mercer-Flodin growth model
##
## Created by Daniel Rodríguez Pérez on 28/8/2013.
##
## Copyright (c) 2013 Daniel Rodríguez Pérez.
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>
##
#' Morgan-Mercer-Flodin growth model
#'
#' Computes the Morgan-Mercer-Flodin growth model
#' \deqn{ y(t) = \frac{(w_0 \gamma + \alpha t^m)}{\gamma} +t^m}{ y(t) = (w_0 * \gamma + \alpha * t^m) / (\gamma + t^m)}
#'
#' @param t time
#' @param x size
#' @param alpha upper asymptote
#' @param w0 the value at t = 0
#' @param gamma parameter that controls the point of inflection
#' @param m growth rate
#'
#' @usage mmf(t, alpha, w0, gamma, m)
#'
#' @examples
#' growth <- mmf(0:10, 10, 0.5, 4, 1)
#'
#' @references
#' A. Khamiz, Z. Ismail, and A. T. Muhammad, "Nonlinear growth models for
#' modeling oil palm yield growth," Journal of Mathematics and Statistics,
#' vol. 1, no. 3, p. 225, 2005.
#'
#' @author Daniel Rodriguez
#'
#' @rdname mmf
#' @export mmf
#' @aliases mmf
mmf <- function(t, alpha, w0, gamma, m) {
result <- (w0 * gamma + alpha * t^m) / (gamma + t^m)
return(result)
}
#' @examples
#' # Calculate inverse function
#' time <- mmf.inverse(growth, 10, 0.5, 4, 1)
#'
#' @rdname mmf
#' @export mmf.inverse
#' @aliases mmf.inverse
mmf.inverse <- function(x, alpha, w0, gamma, m) {
result <- (gamma * (w0 - x) / (x - alpha))^(1/m)
return(result)
}
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.