1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

- 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/
This commit is contained in:
TAKATSU Tomonari 2016-10-10 12:49:50 +00:00
parent 7c95a00386
commit 229913f9fd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=423659
4 changed files with 29 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1475924566
SHA256 (numDeriv_2016.8-1.tar.gz) = 1b681d273697dc780a3ac5bedabb4a257785732d9ca4ef68e4e4aac8b328d11e
SIZE (numDeriv_2016.8-1.tar.gz) = 76303

View File

@ -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/