Update Copyright years
[Math-GSL.git] / pod / Multifit.pod
blob292fd751fe14c5b4a80f407b7e05afd213e90bb5
1 %perlcode %{
2 @EXPORT_OK = qw/
3                gsl_multifit_linear_alloc 
4                gsl_multifit_linear_free 
5                gsl_multifit_linear 
6                gsl_multifit_linear_svd 
7                gsl_multifit_wlinear 
8                gsl_multifit_wlinear_svd 
9                gsl_multifit_linear_est 
10                gsl_multifit_linear_residuals 
11                gsl_multifit_gradient 
12                gsl_multifit_covar 
13                gsl_multifit_fsolver_alloc 
14                gsl_multifit_fsolver_free 
15                gsl_multifit_fsolver_set 
16                gsl_multifit_fsolver_iterate 
17                gsl_multifit_fsolver_name 
18                gsl_multifit_fsolver_position 
19                gsl_multifit_fdfsolver_alloc 
20                gsl_multifit_fdfsolver_set 
21                gsl_multifit_fdfsolver_iterate 
22                gsl_multifit_fdfsolver_free 
23                gsl_multifit_fdfsolver_name 
24                gsl_multifit_fdfsolver_position 
25                gsl_multifit_test_delta 
26                gsl_multifit_test_gradient
27                $gsl_multifit_fdfsolver_lmder
28                $gsl_multifit_fdfsolver_lmsder; 
29              /;
30 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
32 __END__
34 =head1 NAME
36 Math::GSL::Multifit - Least-squares functions for a general linear model with multiple parameters
38 =head1 SYNOPSIS
40 use Math::GSL::Multifit qw /:all/;
42 =head1 DESCRIPTION
44 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 which are to be estimated.
46 Here is a list of all the functions in this module :
48 =over 
50 =item C<gsl_multifit_linear_alloc($n, $p)> - This function allocates a workspace for fitting a model to $n observations using $p parameters. 
52 =item C<gsl_multifit_linear_free($work)> - This function frees the memory associated with the workspace w. 
54 =item C<gsl_multifit_linear($X, $y, $c, $cov, $work)> - This function computes the best-fit parameters vector $c of the model y = X c for the observations vector $y and the matrix of predictor variables $X. The variance-covariance matrix of the model parameters vector $cov is estimated from the scatter of the observations about the best-fit. The sum of squares of the residuals from the best-fit, \chi^2, is returned after 0 if the operation succeeded, 1 otherwise. If the coefficient of determination is desired, it can be computed from the expression R^2 = 1 - \chi^2 / TSS, where the total sum of squares (TSS) of the observations y may be computed from gsl_stats_tss. The best-fit is found by singular value decomposition of the matrix $X using the preallocated workspace provided in $work. The modified Golub-Reinsch SVD algorithm is used, with column scaling to improve the accuracy of the singular values. Any components which have zero singular value (to machine precision) are discarded from the fit.
56 =item C<gsl_multifit_linear_svd($X, $y, $tol, $c, $cov, $work)> - This function computes the best-fit parameters c of the model y = X c for the observations vector $y and the matrix of predictor variables $X. The variance-covariance matrix of the model parameters vector $cov is estimated from the scatter of the observations about the best-fit. The sum of squares of the residuals from the best-fit, \chi^2, is returned after 0 if the operation succeeded, 1 otherwise. If the coefficient of determination is desired, it can be computed from the expression R^2 = 1 - \chi^2 / TSS, where the total sum of squares (TSS) of the observations y may be computed from gsl_stats_tss. In this second form of the function the components are discarded if the ratio of singular values s_i/s_0 falls below the user-specified tolerance $tol, and the effective rank is returned after the sum of squares of the residuals from the best-fit.
58 =item C<gsl_multifit_wlinear($X, $w, $y, $c, $cov, $work> - This function computes the best-fit parameters vector $c of the weighted model y = X c for the observations y with weights $w and the matrix of predictor variables $X. The covariance matrix of the model parameters $cov is computed with the given weights. The weighted sum of squares of the residuals from the best-fit, \chi^2, is returned after 0 if the operation succeeded, 1 otherwise. If the coefficient of determination is desired, it can be computed from the expression R^2 = 1 - \chi^2 / WTSS, where the weighted total sum of squares (WTSS) of the observations y may be computed from gsl_stats_wtss. The best-fit is found by singular value decomposition of the matrix $X using the preallocated workspace provided in $work. Any components which have zero singular value (to machine precision) are discarded from the fit.
60 =item C<gsl_multifit_wlinear_svd($X, $w, $y, $tol, $rank, $c, $cov, $work) > This function computes the best-fit parameters vector $c of the weighted model y = X c for the observations y with weights $w and the matrix of predictor variables $X. The covariance matrix of the model parameters $cov is computed with the given weights. The weighted sum of squares of the residuals from the best-fit, \chi^2, is returned after 0 if the operation succeeded, 1 otherwise. If the coefficient of determination is desired, it can be computed from the expression R^2 = 1 - \chi^2 / WTSS, where the weighted total sum of squares (WTSS) of the observations y may be computed from gsl_stats_wtss. The best-fit is found by singular value decomposition of the matrix $X using the preallocated workspace provided in $work. In this second form of the function the components are discarded if the ratio of singular values s_i/s_0 falls below the user-specified tolerance $tol, and the effective rank is returned after the sum of squares of the residuals from the best-fit.. 
62 =item C<gsl_multifit_linear_est($x, $c, $cov)> - This function uses the best-fit multilinear regression coefficients vector $c and their covariance matrix $cov to compute the fitted function value $y and its standard deviation $y_err for the model y = x.c at the point $x, in the form of a vector. The functions returns 3 values in this order : 0 if the operation succeeded, 1 otherwise, the fittes function value and its standard deviation. 
64 =item C<gsl_multifit_linear_residuals($X, $y, $c, $r)> - This function computes the vector of residuals r = y - X c for the observations vector $y, coefficients vector $c and matrix of predictor variables $X. $r is also a vector.
66 =item C<gsl_multifit_gradient($J, $f, $g)> - This function computes the gradient $g of \Phi(x) = (1/2) ||F(x)||^2 from the Jacobian matrix $J and the function values $f, using the formula $g = $J^T $f. $g and $f are vectors.
68 =item C<gsl_multifit_test_gradient($g, $epsabas)> - This function tests the residual gradient vector $g against the absolute error bound $epsabs. Mathematically, the gradient should be exactly zero at the minimum. The test returns $GSL_SUCCESS if the following condition is achieved, \sum_i |g_i| < $epsabs and returns $GSL_CONTINUE otherwise. This criterion is suitable for situations where the precise location of the minimum, x, is unimportant provided a value can be found where the gradient is small enough. 
70 =item C<gsl_multifit_test_delta($dx, $x, $epsabs, $epsrel)> - This function tests for the convergence of the sequence by comparing the last step vector $dx with the absolute error $epsabs and relative error $epsrel to the current position x. The test returns $GSL_SUCCESS if the following condition is achieved, |dx_i| < epsabs + epsrel |x_i| for each component of x and returns $GSL_CONTINUE otherwise. 
72 =back
74 The following functions are not yet implemented. Patches Welcome! 
76 =over
78 =item C<gsl_multifit_covar >
80 =item C<gsl_multifit_fsolver_alloc($T, $n, $p)>
82 =item C<gsl_multifit_fsolver_free >
84 =item C<gsl_multifit_fsolver_set >
86 =item C<gsl_multifit_fsolver_iterate >
88 =item C<gsl_multifit_fsolver_name >
90 =item C<gsl_multifit_fsolver_position >
92 =item C<gsl_multifit_fdfsolver_alloc >
94 =item C<gsl_multifit_fdfsolver_set >
96 =item C<gsl_multifit_fdfsolver_iterate >
98 =item C<gsl_multifit_fdfsolver_free >
100 =item C<gsl_multifit_fdfsolver_name >
102 =item C<gsl_multifit_fdfsolver_position >
105 =back
107 For more informations on the functions, we refer you to the GSL offcial
108 documentation: L<http://www.gnu.org/software/gsl/manual/html_node/>
110  Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want
112 =head1 EXAMPLES
116 =head1 AUTHORS
118 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
120 =head1 COPYRIGHT AND LICENSE
122 Copyright (C) 2008-2009 Jonathan Leto and Thierry Moisan
124 This program is free software; you can redistribute it and/or modify it
125 under the same terms as Perl itself.
127 =cut