https://github.com/cran/pracma
Raw File
Tip revision: e970b8e92676e0d1f2c84b116f0bad93b03b89c6 authored by Hans W. Borchers on 15 December 2019, 21:30:02 UTC
version 2.2.9
Tip revision: e970b8e
runge.R
##
##  r u n g e . R  Runge Function
##


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