diff options
author | tota <tota@FreeBSD.org> | 2016-10-10 20:49:50 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2016-10-10 20:49:50 +0800 |
commit | c571ece3049e793f5657ab0c8f522aec54c07785 (patch) | |
tree | a96889f9413fff9e30efe91918e9f5edf837669e /math | |
parent | 31a53ccbd0a16d111a669e4b824f978160f3e4c7 (diff) | |
download | freebsd-ports-gnome-c571ece3049e793f5657ab0c8f522aec54c07785.tar.gz freebsd-ports-gnome-c571ece3049e793f5657ab0c8f522aec54c07785.tar.zst freebsd-ports-gnome-c571ece3049e793f5657ab0c8f522aec54c07785.zip |
- Add new port: math/R-cran-numDeriv
Methods for calculating (usually) accurate numerical first and
second order derivatives. Accurate calculations are done using
'Richardson"s' extrapolation or, when applicable, a complex step
derivative is available. A simple difference method is also provided.
Simple difference is (usually) less accurate but is much quicker
than 'Richardson"s' extrapolation and provides a useful cross-check.
Methods are provided for real scalar and vector valued functions.
WWW: https://cran.r-project.org/web/packages/numDeriv/
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-numDeriv/Makefile | 16 | ||||
-rw-r--r-- | math/R-cran-numDeriv/distinfo | 3 | ||||
-rw-r--r-- | math/R-cran-numDeriv/pkg-descr | 9 |
4 files changed, 29 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index aadb284a5825..3469db680f03 100644 --- a/math/Makefile +++ b/math/Makefile @@ -55,6 +55,7 @@ SUBDIR += R-cran-nloptr SUBDIR += R-cran-nnls SUBDIR += R-cran-nortest + SUBDIR += R-cran-numDeriv SUBDIR += R-cran-outliers SUBDIR += R-cran-pbkrtest SUBDIR += R-cran-psych diff --git a/math/R-cran-numDeriv/Makefile b/math/R-cran-numDeriv/Makefile new file mode 100644 index 000000000000..801afe87c8d6 --- /dev/null +++ b/math/R-cran-numDeriv/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= numDeriv +DISTVERSION= 2016.8-1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Accurate Numerical Derivatives + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/math/R-cran-numDeriv/distinfo b/math/R-cran-numDeriv/distinfo new file mode 100644 index 000000000000..0a1d698f9c12 --- /dev/null +++ b/math/R-cran-numDeriv/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1475924566 +SHA256 (numDeriv_2016.8-1.tar.gz) = 1b681d273697dc780a3ac5bedabb4a257785732d9ca4ef68e4e4aac8b328d11e +SIZE (numDeriv_2016.8-1.tar.gz) = 76303 diff --git a/math/R-cran-numDeriv/pkg-descr b/math/R-cran-numDeriv/pkg-descr new file mode 100644 index 000000000000..6ee1add3ddd6 --- /dev/null +++ b/math/R-cran-numDeriv/pkg-descr @@ -0,0 +1,9 @@ +Methods for calculating (usually) accurate numerical first and +second order derivatives. Accurate calculations are done using +'Richardson"s' extrapolation or, when applicable, a complex step +derivative is available. A simple difference method is also provided. +Simple difference is (usually) less accurate but is much quicker +than 'Richardson"s' extrapolation and provides a useful cross-check. +Methods are provided for real scalar and vector valued functions. + +WWW: https://cran.r-project.org/web/packages/numDeriv/ |