Jonathan Leto > Math-GSL-0.07 > Math::GSL::QRNG

Download:
Math-GSL-0.07.tar.gz

Annotate this POD

CPAN RT

New  5
Open  4
View Bugs
Report a bug
Source   Latest Release: Math-GSL-0.20

NAME ^

Math::GSL::QRNG - Quasi-random number generator

SYNOPSIS ^

use Math::GSL::QRNG qw/:all/;

DESCRIPTION ^

Here is a list of all the functions included in this module :

gsl_qrng_alloc($T, $n) - This function returns a pointer to a newly-created instance of a quasi-random sequence generator of type $T and dimension $d. The type $T must be one of the constants included in this module.
gsl_qrng_clone
gsl_qrng_memcpy -
gsl_qrng_free($q) - This function frees all the memory associated with the generator $q.
gsl_qrng_init($q) - This function reinitializes the generator $q to its starting point. Note that quasi-random sequences do not use a seed and always produce the same set of values.
gsl_qrng_name($q) - This function returns a pointer to the name of the generator $q.
gsl_qrng_size
gsl_qrng_state
gsl_qrng_get

This module also contains the following constants :

$gsl_qrng_niederreiter_2
$gsl_qrng_sobol
$gsl_qrng_halton
$gsl_qrng_reversehalton

For more informations on the functions, we refer you to the GSL offcial documentation: http://www.gnu.org/software/gsl/manual/html_node/

Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want

EXAMPLES ^

AUTHORS ^

Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>

COPYRIGHT AND LICENSE ^

Copyright (C) 2008 Jonathan Leto and Thierry Moisan

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.