Import py27-gvar-4.6.1 as wip/py-gvar.
This package provides tools for creating and manipulating Gaussian random variables from correlated multi-dimensional Gaussian distributions. The Gaussian variables are represented by objects of type :class:`gvar.GVar` which can be combined with each other and with ordinary numbers in arbitrary arithmetic expressions, including standard functions such ``sin`` and ``exp``, to create new :class:`gvar.GVar`\s whose correlations with the original variables are tracked implicitly (and handled correctly). This package relies on ``numpy`` for efficient array arithmetic, and on Cython to compile efficient core routines and interface code
This commit is contained in:
parent
1244b4626b
commit
b4b28b849f
4 changed files with 53 additions and 0 deletions
12
py-gvar/DESCR
Normal file
12
py-gvar/DESCR
Normal file
|
@ -0,0 +1,12 @@
|
|||
This package provides tools for creating and manipulating
|
||||
Gaussian random variables from correlated multi-dimensional
|
||||
Gaussian distributions. The Gaussian variables are represented
|
||||
by objects of type :class:`gvar.GVar` which can be combined
|
||||
with each other and with ordinary numbers in arbitrary
|
||||
arithmetic expressions, including standard functions such
|
||||
``sin`` and ``exp``, to create new :class:`gvar.GVar`\s whose
|
||||
correlations with the original variables are tracked implicitly
|
||||
(and handled correctly).
|
||||
|
||||
This package relies on ``numpy`` for efficient array arithmetic,
|
||||
and on Cython to compile efficient core routines and interface code
|
23
py-gvar/Makefile
Normal file
23
py-gvar/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# $NetBSD: Makefile,v 1.1 2014/02/02 20:30:58 jihbed Exp $
|
||||
|
||||
DISTNAME= gvar-4.6.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= math python
|
||||
MASTER_SITES= https://pypi.python.org/packages/source/g/gvar/
|
||||
FETCH_USING= curl
|
||||
|
||||
MAINTAINER= jihbed.research@gmail.com
|
||||
HOMEPAGE= https://github.com/gplepage/lsqfit.git
|
||||
COMMENT= Utilities for manipulating Gaussian random variables
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
USE_LANGUAGES= c
|
||||
|
||||
PYDISTUTILSPKG= yes
|
||||
|
||||
|
||||
.include "../../devel/py-cython/buildlink3.mk"
|
||||
.include "../../lang/python/extension.mk"
|
||||
.include "../../math/gsl/buildlink3.mk"
|
||||
.include "../../math/py-numpy/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
13
py-gvar/PLIST
Normal file
13
py-gvar/PLIST
Normal file
|
@ -0,0 +1,13 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2014/02/02 20:30:58 jihbed Exp $
|
||||
${PYSITELIB}/gvar.pxd
|
||||
${PYSITELIB}/gvar/__init__.py
|
||||
${PYSITELIB}/gvar/__init__.pyc
|
||||
${PYSITELIB}/gvar/__init__.pyo
|
||||
${PYSITELIB}/gvar/_bufferdict.so
|
||||
${PYSITELIB}/gvar/_gvarcore.so
|
||||
${PYSITELIB}/gvar/_svec_smat.so
|
||||
${PYSITELIB}/gvar/_utilities.so
|
||||
${PYSITELIB}/gvar/_version.py
|
||||
${PYSITELIB}/gvar/_version.pyc
|
||||
${PYSITELIB}/gvar/_version.pyo
|
||||
${PYSITELIB}/gvar/dataset.so
|
5
py-gvar/distinfo
Normal file
5
py-gvar/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2014/02/02 20:30:58 jihbed Exp $
|
||||
|
||||
SHA1 (gvar-4.6.1.tar.gz) = 65087773c4d830122c4e84e89286fa437ac30c3c
|
||||
RMD160 (gvar-4.6.1.tar.gz) = 497da8ff52659f8492d49f1c1ebeab3370f6d7be
|
||||
Size (gvar-4.6.1.tar.gz) = 535196 bytes
|
Loading…
Reference in a new issue