The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:Math-GSL Math::Complex"

Math::GSL::Complex - Complex Numbers River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : "gsl_complex_arg($z)" Return the argument of the complex number $z "gsl_complex_abs($z)" Return |$z|, the magnitude of the complex number $z "gsl_complex_rect($x,$y)" Create a complex numb...

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

Math::GSL::Complex - Complex Numbers River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : "gsl_complex_arg($z)" Return the argument of the complex number $z "gsl_complex_abs($z)" Return |$z|, the magnitude of the complex number $z "gsl_complex_rect($x,$y)" Create a complex numb...

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

Math::GSL::VectorComplex - Complex Vectors River stage one • 5 direct dependents • 6 total dependents

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

Math::GSL::MatrixComplex - Complex Matrices River stage one • 5 direct dependents • 6 total dependents

"gsl_matrix_complex_alloc " "gsl_matrix_complex_calloc " "gsl_matrix_complex_alloc_from_block " "gsl_matrix_complex_alloc_from_matrix " "gsl_vector_complex_alloc_row_from_matrix " "gsl_vector_complex_alloc_col_from_matrix " "gsl_matrix_complex_free "...

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

Math::GSL::VectorComplex - Complex Vectors River stage one • 5 direct dependents • 6 total dependents

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

Math::GSL::MatrixComplex - Complex Matrices River stage one • 5 direct dependents • 6 total dependents

"gsl_matrix_complex_alloc " "gsl_matrix_complex_calloc " "gsl_matrix_complex_alloc_from_block " "gsl_matrix_complex_alloc_from_matrix " "gsl_vector_complex_alloc_row_from_matrix " "gsl_vector_complex_alloc_col_from_matrix " "gsl_matrix_complex_free "...

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

Math::GSL::Poly - Solve and evaluate polynomials River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : * gsl_poly_eval(@values, $length, $x) This function evaluates a polynomial with real coefficients for the real variable $x. $length is the number of elements inside @values. The function r...

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

Math::GSL::Linalg - Functions for solving linear systems River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : gsl_linalg_matmult gsl_linalg_matmult_mod gsl_linalg_exponential_ss gsl_linalg_householder_transform gsl_linalg_complex_householder_transform gsl_linalg_householder_hm($tau, $v, $A) - This...

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

Math::GSL::Matrix - Mathematical functions concerning Matrices River stage one • 5 direct dependents • 6 total dependents

This module is part of the Math::GSL distribution. It defines a Perl insterface to GNU Scientific Library matrices. There are two different (but not exclusive) ways to use this module: using the OO API, built manually over the GSL functions, or using...

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

Math::GSL::FFT - Fast Fourier Transforms (FFT) River stage one • 5 direct dependents • 6 total dependents

* "gsl_fft_complex_radix2_forward($data, $stride, $n) " This function computes the forward FFTs of length $n with stride $stride, on the array reference $data using an in-place radix-2 decimation-in-time algorithm. The length of the transform $n is r...

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

Math::GSL::Vector - Functions concerning vectors River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : "gsl_vector_alloc($x)" Create a vector of size $x "gsl_vector_calloc($x)" Create a vector of size $x and initializes all the elements of the vector to zero "gsl_vector_alloc_from_block" "g...

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

Math::GSL::Eigen - Functions for computing eigenvalues and eigenvectors of matrices River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : gsl_eigen_symm_alloc($n) - This function returns a workspace for computing eigenvalues of n-by-n real symmetric matrices. gsl_eigen_symm_free($w) - This function frees the memory associate...

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

Math::GSL::SparseMatrix - Sparse Matrices River stage one • 5 direct dependents • 6 total dependents

NOTE: This module requires GSL 2.0 or higher. 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 - 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::FFT - Fast Fourier Transforms (FFT) River stage one • 5 direct dependents • 6 total dependents

* "gsl_fft_complex_radix2_forward($data, $stride, $n) " This function computes the forward FFTs of length $n with stride $stride, on the array reference $data using an in-place radix-2 decimation-in-time algorithm. The length of the transform $n is r...

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::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::Poly - Solve and evaluate polynomials River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : * gsl_poly_eval(@values, $length, $x) This function evaluates a polynomial with real coefficients for the real variable $x. $length is the number of elements inside @values. The function r...

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::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
25 results (0.049 seconds)