R/phi.R

Defines functions phi

Documented in phi

#'  nonlinear ODE of propagation
#'
#' @param x state
#'
#' @return
#' @export
phi = function(x){
  #1/(1 + exp(-x))
  tanh(x)
}
ZahraNSL/ODENEM documentation built on Dec. 31, 2020, 6:35 p.m.