diff options
author | miwi <miwi@FreeBSD.org> | 2008-11-16 05:48:19 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-11-16 05:48:19 +0800 |
commit | c81a59f270bacae4f926d311a0509054a71d9f26 (patch) | |
tree | 2fd2a0b63abeae5eb4233889d9439ad9e9e16944 /math/Makefile | |
parent | 6ac87ad1f097ae6fdb1142598fb371081d904b5a (diff) | |
download | freebsd-ports-gnome-c81a59f270bacae4f926d311a0509054a71d9f26.tar.gz freebsd-ports-gnome-c81a59f270bacae4f926d311a0509054a71d9f26.tar.zst freebsd-ports-gnome-c81a59f270bacae4f926d311a0509054a71d9f26.zip |
UNU.RAN (Universal Non-Uniform RAndom Number generator) is a collection of
algorithms for generating non-uniform pseudorandom variates as a library of C
functions designed and implemented by the ARVAG (Automatic Random VAriate
Generation) project group in Vienna, and released under the GNU Public License
(GPL). It is especially designed for situations where:
- a non-standard distribution or a truncated distribution is needed;
- experiments with different types of distributions are made;
- random variates for variance reduction techniques are used; or
- fast generators of predictable quality are necessary.
UNU.RAN provides generators that are superior in many aspects to those found in
quite a number of other libraries; however, due to its more sophisticated
programming interface, it might not be as easy to use.
It uses an object-oriented interface in which distributions and generators are
treated as independent objects, so that different methods for generating
non-uniform random variates may be chosen according to various criteria, such
as speed, quality, and variance reduction. It is flexible enough to permit
sampling from non-standard distributions, such as distributions that arise in
a model and can only be computed in complicated subroutines.
WWW: http://statmath.wu-wien.ac.at/unuran/
PR: ports/128883
Submitted by: bf <bf2006a at yahoo.com>
Diffstat (limited to 'math/Makefile')
-rw-r--r-- | math/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 9c07ae838b5b..dfa372ad2d3b 100644 --- a/math/Makefile +++ b/math/Makefile @@ -473,6 +473,7 @@ SUBDIR += ump SUBDIR += units SUBDIR += unixstat + SUBDIR += unuran SUBDIR += vtk SUBDIR += vtk-data SUBDIR += vtk-examples |