Skip to content
Snippets Groups Projects
Commit 87f7e40d authored by wactbprot's avatar wactbprot
Browse files

f. 0.5 fehlt noch man, roxygen2 for R version 3.3 needed

parent 4480fdb6
Branches
No related tags found
No related merge requests found
Pipeline #
Package: vacLabTools
Type: Package
Title: common vaclab tools
Version: 0.4
Version: 0.5
Date: 2016-02-23
Author: Thomas Bock
Maintainer: wactbprot <wactbprot@gmail.com>
......
......@@ -4,6 +4,7 @@ export(abbrevList)
export(fn.1011)
export(fn.2115)
export(fn.2162)
export(raw.2162)
export(fn.3132)
export(fn.4070)
export(fn.4096)
......
......@@ -30,7 +30,7 @@ fn.2162 <- function(sl, prefix, sufix, x){
length(c) > 0 &
length(d) > 0){
return(a + b * x + c * log(x) + d *exp(-x))
return(raw.2162(x, a, b, c, d))
}else{
stop(paste("no params found in function:",fname))
}
......
#' Raw 2162 function
#'
#' @author wactbprot
#' @export
#' @usage raw.2162(x, a, b, c, d)
#' @param x values
#' @param a parameter a
#' @param b parameter b
#' @param c parameter c
#' @param d parameter d
#'
#' @examples
#' \dontrun{
#' a <- abbrevList(doc)
#' raw.2162(p.fill, a, b, c, d)
#' }
#' @return \item{y}{function value}
#' @keywords misc
#'
raw.2162 <- function(x, a, b, c, d){
return(a + b * x + c * log(x) + d *exp(-x))
}
\ No newline at end of file
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment