Revision 392ae21a013fb3f518e8f9eb8efb458a55a2eca2 authored by HwB on 09 April 2011, 00:00:00 UTC, committed by Gabor Csardi on 09 April 2011, 00:00:00 UTC
1 parent 162b332
Raw File
runge.R
##
##  r u n g e . R  Runge Function
##


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