1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
%perlcode %{
@EXPORT_OK = qw/
gsl_multilarge_linear_accumulate
gsl_multilarge_linear_alloc
gsl_multilarge_linear_free
gsl_multilarge_linear_genform1
gsl_multilarge_linear_genform2
gsl_multilarge_linear_L_decomp
gsl_multilarge_linear_name
gsl_multilarge_linear_normal
gsl_multilarge_linear_rcond
gsl_multilarge_linear_reset
gsl_multilarge_linear_solve
gsl_multilarge_linear_stdform1
gsl_multilarge_linear_stdform2
gsl_multilarge_linear_tsqr
gsl_multilarge_linear_wstdform1
gsl_multilarge_linear_wstdform2
/;
%EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
__END__
=encoding utf8
=head1 NAME
Math::GSL::Multilarge - Large Linear Systems
=head1 SYNOPSIS
use Math::GSL::Multilarge qw /:all/;
=head1 DESCRIPTION
NOTE: This module requires GSL 2.1 or higher.
This subsystem is for solving large dense least squares systems.
For more information on the functions, we refer you to the GSL official
documentation: L<http://www.gnu.org/software/gsl/manual/html_node/>
=head1 EXAMPLES
None yet
=head1 AUTHORS
Jonathan "Duke" Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2008-2024 Jonathan "Duke" Leto and Thierry Moisan
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
%}
|