The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Math::Gsl"

Math::GSL - Perl interface to the GNU Scientific Library (GSL) River stage one • 5 direct dependents • 6 total dependents

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::DHT - Discrete Hankel Transforms River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : "gsl_dht_alloc($size)" - This function allocates a Discrete Hankel transform object of size $size. "gsl_dht_new($size, $nu, $xmax)" - This function allocates a Discrete Hankel transform ob...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Sys - Misc Math Functions River stage one • 5 direct dependents • 6 total dependents

This module contains various useful math functions that are not usually provided by standard libraries. * "gsl_log1p($x)" This function computes the value of \log(1+$x) in a way that is accurate for small $x. It provides an alternative to the BSD mat...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::CDF - Cumulative Distribution Functions River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : gsl_cdf_ugaussian_P($x) gsl_cdf_ugaussian_Q($x) gsl_cdf_ugaussian_Pinv($P) gsl_cdf_ugaussian_Qinv($Q) These functions compute the cumulative distribution functions P(x), Q(x) and their inv...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Fit - Least-squares functions for a general linear model with one- or two-parameter regression River stage one • 5 direct dependents • 6 total dependents

The functions in this module perform least-squares fits to a general linear model, y = X c where y is a vector of n observations, X is an n by p matrix of predictor variables, and the elements of the vector c are the p unknown best-fit parameters whi...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Sort - Functions for sorting data River stage one • 5 direct dependents • 6 total dependents

* gsl_sort_vector($v) This function sorts the elements of the vector $v into ascending numerical order. * gsl_sort_vector_index($p, $v) This function indirectly sorts the elements of the vector $v into ascending order, storing the resulting permutati...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::BLAS - Basic Linear Algebra Subprograms River stage one • 5 direct dependents • 6 total dependents

The functions of this module are divised into 3 levels: Level 1 - Vector operations "gsl_blas_sdsdot" "gsl_blas_dsdot" "gsl_blas_sdot" "gsl_blas_ddot($x, $y)" This function computes the scalar product x^T y for the vectors $x and $y. The function ret...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Diff - Numerical differentiation routines River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : "gsl_diff_central" This function computes the numerical derivative of the function f at the point x using an adaptive central difference algorithm. The result is an array where the first p...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Siman - Simulated Annealing River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions in this module : * "gsl_siman_solve " * "gsl_siman_solve_many " For more informations on the functions, we refer you to the GSL official documentation: <http://www.gnu.org/software/gsl/manual/html_node/>...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::SF - Special Functions River stage one • 5 direct dependents • 6 total dependents

This module contains a data structure named gsl_sf_result. To create a new one use $r = Math::GSL::SF::gsl_sf_result_struct->new; You can then access the elements of the structure in this way : my $val = $r->{val}; my $error = $r->{err}; Here is a li...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::CBLAS - Basic Linear Algebra Subprograms based on C functions River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : "cblas_sdsdot" "cblas_dsdot" "cblas_sdot" "cblas_ddot" "cblas_cdotu_sub" "cblas_cdotc_sub" "cblas_zdotu_sub" "cblas_zdotc_sub" "cblas_snrm2" "cblas_sasum" "cblas_dnrm2" "cblas_dasum" "cbla...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Errno - Error Handling River stage one • 5 direct dependents • 6 total dependents

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Sum - Sum series with the Levin u-transform River stage one • 5 direct dependents • 6 total dependents

These functions accelerate the convergence of a series using the Levin u-transform. * gsl_sum_levin_u_alloc($n) This function allocates a workspace for a Levin u-transform of $n terms. * gsl_sum_levin_u_free($w) - This function frees the memory assoc...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::RNG - Random Number Generators River stage one • 5 direct dependents • 6 total dependents

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Spline - Splines River stage one • 5 direct dependents • 6 total dependents

The functions described in the Interp module required the user to supply pointers to the x and y arrays on each call. The following functions are equivalent to the corresponding gsl_interp functions but maintain a copy of this data in the gsl_spline ...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Min - 1-D Minimization River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions in this module : * "gsl_min_fminimizer_alloc($type)" * "gsl_min_fminimizer_free" Don't call this function explicitly. It will be called automatically in DESTROY for fminimizer. * "gsl_min_fminimizer_set " Don't app...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::PowInt - Integer Power functions River stage one • 5 direct dependents • 6 total dependents

This module implements the GSL Integer Power functions, which allow one to quickly compute a given integer raised to any real number. It contains gsl_pow_2 to gsl_pow_9 and gsl_pow_int. If you need a power higher than 9, you can use gsl_pow_int, whic...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Test - Assertions and such River stage one • 5 direct dependents • 6 total dependents

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Randist - Probability Distributions River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module. For all sampling methods, the first argument $r is a raw gsl_rnd structure retrieve by calling raw() on an Math::GSL::RNG object. Bernoulli gsl_ran_bernoulli($r, $p) This function returns e...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC

Math::GSL::Machine - Machine constants River stage one • 5 direct dependents • 6 total dependents

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC
63 results (0.055 seconds)