https://github.com/cran/pracma
Raw File
Tip revision: 7f8c12bb73c64627d031ab960efe5639f33d0069 authored by Hans W. Borchers on 11 July 2015, 00:00:00 UTC
version 1.8.6
Tip revision: 7f8c12b
runge.R
##
##  r u n g e . R  Runge Function
##


runge <- function(x) {
    1 / (1 + (5*x)^2)
}
back to top