diff options
author | jtb <jtb@pkgsrc.org> | 2001-04-17 00:19:57 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-04-17 00:19:57 +0000 |
commit | 1a26416ca6ff199392ac8e324a7dafff14de09d4 (patch) | |
tree | 291da55af8a980d3ccd3e2b6d4633663e3ffbe7e /math/dcdflib.f/Makefile | |
parent | e18c696a1e3e740f77dfe79e14b77c8f4f2739e9 (diff) | |
download | pkgsrc-1a26416ca6ff199392ac8e324a7dafff14de09d4.tar.gz |
Initial import of dcdflib.f.
This library contains routines to compute cumulative distribution
functions, inverses, and parameters of the distribution for the
following set of statistical distributions:
(1) Beta
(2) Binomial
(3) Chi-square
(4) Noncentral Chi-square
(5) F
(6) Noncentral F
(7) Gamma
(8) Negative Binomial
(9) Normal
(10) Poisson
(11) Student's t
(12) Noncentral t
Given values of all but one parameter of a distribution, the other is
computed. These calculations are done with FORTRAN Double Precision
variables.
Diffstat (limited to 'math/dcdflib.f/Makefile')
-rw-r--r-- | math/dcdflib.f/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/math/dcdflib.f/Makefile b/math/dcdflib.f/Makefile new file mode 100644 index 00000000000..7c6dfeb2b74 --- /dev/null +++ b/math/dcdflib.f/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/04/17 00:19:57 jtb Exp $ + +DISTNAME= dcdflib.f-1.1 +CATEGORIES= math +MASTER_SITES= ftp://odin.mdacc.tmc.edu/pub/source/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://odin.mdacc.tmc.edu/anonftp/page_2.html +COMMENT= Library of Fortran Routines for Cumulative Distribution Functions + +USE_FORTRAN= yes + +WRKSRC= ${WRKDIR}/dcdflib.f/src + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dcdflib.f + ${INSTALL_DATA} ${WRKSRC}/../doc/* ${PREFIX}/share/doc/dcdflib.f + ${INSTALL_DATA} ${WRKSRC}/../README ${PREFIX}/share/doc/dcdflib.f + +.include "../../mk/bsd.pkg.mk" |