1%perlcode %{ 2 3@EXPORT_OK = qw/ 4 gsl_eigen_symm_alloc gsl_eigen_symm_free 5 gsl_eigen_symm gsl_eigen_symmv_alloc gsl_eigen_symmv_free gsl_eigen_symmv 6 gsl_eigen_herm_alloc gsl_eigen_herm_free gsl_eigen_herm gsl_eigen_hermv_alloc 7 gsl_eigen_hermv_free gsl_eigen_hermv gsl_eigen_francis_alloc gsl_eigen_francis_free 8 gsl_eigen_francis_T gsl_eigen_francis gsl_eigen_francis_Z gsl_eigen_nonsymm_alloc 9 gsl_eigen_nonsymm_free gsl_eigen_nonsymm_params gsl_eigen_nonsymm 10 gsl_eigen_nonsymm_Z gsl_eigen_nonsymmv_alloc gsl_eigen_nonsymmv_free 11 gsl_eigen_nonsymmv gsl_eigen_nonsymmv_Z gsl_eigen_gensymm_alloc 12 gsl_eigen_gensymm_free gsl_eigen_gensymm gsl_eigen_gensymm_standardize 13 gsl_eigen_gensymmv_alloc gsl_eigen_gensymmv_free gsl_eigen_gensymmv 14 gsl_eigen_genherm_alloc gsl_eigen_genherm_free gsl_eigen_genherm 15 gsl_eigen_genherm_standardize gsl_eigen_genhermv_alloc gsl_eigen_genhermv_free 16 gsl_eigen_genhermv gsl_eigen_gen_alloc gsl_eigen_gen_free 17 gsl_eigen_gen_params gsl_eigen_gen gsl_eigen_gen_QZ 18 gsl_eigen_genv_alloc gsl_eigen_genv_free gsl_eigen_genv 19 gsl_eigen_genv_QZ gsl_eigen_symmv_sort gsl_eigen_hermv_sort 20 gsl_eigen_nonsymmv_sort gsl_eigen_gensymmv_sort gsl_eigen_genhermv_sort 21 gsl_eigen_genv_sort gsl_schur_gen_eigvals gsl_schur_solve_equation 22 gsl_schur_solve_equation_z gsl_eigen_jacobi gsl_eigen_invert_jacobi 23 $GSL_EIGEN_SORT_VAL_ASC $GSL_EIGEN_SORT_VAL_DESC 24 $GSL_EIGEN_SORT_ABS_ASC $GSL_EIGEN_SORT_ABS_DESC 25 /; 26%EXPORT_TAGS = ( all => [ @EXPORT_OK ] ); 27 28__END__ 29 30=encoding utf8 31 32=head1 NAME 33 34Math::GSL::Eigen - Functions for computing eigenvalues and eigenvectors of matrices 35 36=head1 SYNOPSIS 37 38use Math::GSL::Eigen qw/:all/; 39 40=head1 DESCRIPTION 41 42Here is a list of all the functions included in this module : 43 44=over 45 46=item gsl_eigen_symm_alloc($n) - This function returns a workspace for computing eigenvalues of n-by-n real symmetric matrices. 47 48=item gsl_eigen_symm_free($w) - This function frees the memory associated with the workspace $w. 49 50=item gsl_eigen_symm($A, $eval, $w) - This function computes the eigenvalues of the real symmetric matrix $A. Additional workspace of the appropriate size must be provided in $w. The diagonal and lower triangular part of $A are destroyed during the computation, but the strict upper triangular part is not referenced. The eigenvalues are stored in the vector $eval and are unordered. 51 52=item gsl_eigen_symmv_alloc($n) - This function returns a workspace for computing eigenvalues and eigenvectors of n-by-n real symmetric matrices. 53 54=item gsl_eigen_symmv_free($w) - This function frees the memory associated with the workspace $w. 55 56=item gsl_eigen_symmv($A, $eval, $evec, $w) - This function computes the eigenvalues and eigenvectors of the real symmetric matrix $A. Additional workspace of the appropriate size must be provided in $w. The diagonal and lower triangular part of $A are destroyed during the computation, but the strict upper triangular part is not referenced. The eigenvalues are stored in the vector $eval and are unordered. The corresponding eigenvectors are stored in the columns of the matrix $evec. 57 58=item gsl_eigen_herm_alloc($n) - This function returns a workspace for computing eigenvalues of n-by-n complex hermitian matrices. 59 60=item gsl_eigen_herm_free($w) - This function frees the memory associated with the workspace $w. 61 62=item gsl_eigen_herm($A, $eval, $w) - This function computes the eigenvalues of the complex hermitian matrix $A. Additional workspace of the appropriate size must be provided in $w. The diagonal and lower triangular part of $A are destroyed during the computation, but the strict upper triangular part is not referenced. The imaginary parts of the diagonal are assumed to be zero and are not referenced. The eigenvalues are stored in the vector $eval and are unordered. 63 64=item gsl_eigen_hermv_alloc($n) - This function returns a workspace for computing eigenvalues and eigenvectors of n-by-n complex hermitian matrices. 65 66=item gsl_eigen_hermv_free($w) - This function frees the memory associated with the workspace $w. 67 68=item gsl_eigen_hermv($A, $eval, $evec, $w) - This function computes the eigenvalues and eigenvectors of the complex hermitian matrix $A. Additional workspace of the appropriate size must be provided in $w. The diagonal and lower triangular part of $A are destroyed during the computation, but the strict upper triangular part is not referenced. The imaginary parts of the diagonal are assumed to be zero and are not referenced. The eigenvalues are stored in the vector $eval and are unordered. The corresponding complex eigenvectors are stored in the columns of the matrix $evec. 69 70=item gsl_eigen_francis_alloc($n) - 71 72=item gsl_eigen_francis_free($w) - This function frees the memory associated with the workspace $w. 73 74=item gsl_eigen_francis_T 75 76=item gsl_eigen_francis 77 78=item gsl_eigen_francis_Z 79 80=item gsl_eigen_nonsymm_alloc($n) - This function returns a workspace for computing eigenvalues of n-by-n real nonsymmetric matrices. 81 82=item gsl_eigen_nonsymm_free($w) - This function frees the memory associated with the workspace $w. 83 84=item gsl_eigen_nonsymm_params($compute_t, $balance, $w) - This function sets some parameters which determine how the eigenvalue problem is solved in subsequent calls to gsl_eigen_nonsymm. If $compute_t is set to 1, the full Schur form T will be computed by gsl_eigen_nonsymm. If it is set to 0, T will not be computed (this is the default setting). If balance is set to 1, a balancing transformation is applied to the matrix prior to computing eigenvalues. This transformation is designed to make the rows and columns of the matrix have comparable norms, and can result in more accurate eigenvalues for matrices whose entries vary widely in magnitude. 85 86=item gsl_eigen_nonsymm($A, $eval, $w) - This function computes the eigenvalues of the real nonsymmetric matrix $A and stores them in the vector $eval. If T is desired, it is stored in the upper portion of $A on output. Otherwise, on output, the diagonal of $A will contain the 1-by-1 real eigenvalues and 2-by-2 complex conjugate eigenvalue systems, and the rest of $A is destroyed. In rare cases, this function may fail to find all eigenvalues. If this happens, an error code is returned (1) and the number of converged eigenvalues is stored in $w->{n_evals}. The converged eigenvalues are stored in the beginning of $eval. 87 88=item gsl_eigen_nonsymm_Z($A, $eval, $Z, $w) - This function is identical to gsl_eigen_nonsymm except it also computes the Schur vectors and stores them into the $Z matrix. 89 90=item gsl_eigen_nonsymmv_alloc($n) - This function allocates a workspace for computing eigenvalues and eigenvectors of n-by-n real nonsymmetric matrices. 91 92=item gsl_eigen_nonsymmv_free($w) - This function frees the memory associated with the workspace $w. 93 94=item gsl_eigen_nonsymmv($A, $eval, $evec, $w) - This function computes eigenvalues and right eigenvectors of the n-by-n real nonsymmetric matrix $A. It first calls gsl_eigen_nonsymm to compute the eigenvalues, Schur form T, and Schur vectors. Then it finds eigenvectors of T and backtransforms them using the Schur vectors. The Schur vectors are destroyed in the process, but can be saved by using gsl_eigen_nonsymmv_Z. The computed eigenvectors are normalized to have unit magnitude. On output, the upper portion of $A contains the Schur form T. If gsl_eigen_nonsymm fails, no eigenvectors are computed, and an error code is returned (1). $eval is a complex vector and $evec is a complex matrix. 95 96=item gsl_eigen_nonsymmv_Z($A, $eval, $evec, $Z, $w) - This function is identical to gsl_eigen_nonsymmv except it also saves the Schur vectors into the $Z matrix. 97 98=item gsl_eigen_gensymm_alloc($n) - This function allocates a workspace for computing eigenvalues of n-by-n real generalized symmetric-definite eigensystems. 99 100=item gsl_eigen_gensymm_free($w) - This function frees the memory associated with the workspace $w. 101 102=item gsl_eigen_gensymm($A, $B, $eval, $w) - This function computes the eigenvalues of the real generalized symmetric-definite matrix pair ($A, $B), and stores them in the vector $eval. On output, $B contains its Cholesky decomposition and $A is destroyed. 103 104=item gsl_eigen_gensymm_standardize 105 106=item gsl_eigen_gensymmv_alloc($n) - This function allocates a workspace for computing eigenvalues and eigenvectors of n-by-n real generalized symmetric-definite eigensystems. 107 108=item gsl_eigen_gensymmv_free($w) - This function frees the memory associated with the workspace $w. 109 110=item gsl_eigen_gensymmv($A, $B, $eval, $evec, $w) - This function computes the eigenvalues and eigenvectors of the real generalized symmetric-definite matrix pair ($A, $B), and stores them in $eval vector and $evec matrix respectively. The computed eigenvectors are normalized to have unit magnitude. On output, $B contains its Cholesky decomposition and A is destroyed. 111 112=item gsl_eigen_genherm_alloc($n) - This function allocates a workspace for computing eigenvalues of n-by-n complex generalized hermitian-definite eigensystems. 113 114=item gsl_eigen_genherm_free($w) - This function frees the memory associated with the workspace $w. 115 116=item gsl_eigen_genherm($A, $B, $eval, $w) - This function computes the eigenvalues of the complex generalized hermitian-definite matrix pair ($A, $B), and stores them in the $eval vector. On output, $B contains its Cholesky decomposition and $A is destroyed. 117 118=item gsl_eigen_genherm_standardize 119 120=item gsl_eigen_genhermv_alloc($n) - This function allocates a workspace for computing eigenvalues and eigenvectors of n-by-n complex generalized hermitian-definite eigensystems. 121 122=item gsl_eigen_genhermv_free($w) - This function frees the memory associated with the workspace $w. 123 124=item gsl_eigen_genhermv($A, $B, $eval, $evec, $w) - This function computes the eigenvalues and eigenvectors of the complex generalized hermitian-definite matrix pair ($A, $B), and stores them in $eval vector and $evec matrix respectively. The computed eigenvectors are normalized to have unit magnitude. On output, $B contains its Cholesky decomposition and $A is destroyed. 125 126=item gsl_eigen_gen_alloc($n) - This function allocates a workspace for computing eigenvalues of n-by-n real generalized nonsymmetric eigensystems. 127 128=item gsl_eigen_gen_free($w) - This function frees the memory associated with the workspace $w. 129 130=item gsl_eigen_gen_params($compute_s, $compute_t, $balance, $w) - This function sets some parameters which determine how the eigenvalue problem is solved in subsequent calls to gsl_eigen_gen. If $compute_s is set to 1, the full Schur form S will be computed by gsl_eigen_gen. If it is set to 0, S will not be computed (this is the default setting). S is a quasi upper triangular matrix with 1-by-1 and 2-by-2 blocks on its diagonal. 1-by-1 blocks correspond to real eigenvalues, and 2-by-2 blocks correspond to complex eigenvalues. If $compute_t is set to 1, the full Schur form T will be computed by gsl_eigen_gen. If it is set to 0, T will not be computed (this is the default setting). T is an upper triangular matrix with non-negative elements on its diagonal. Any 2-by-2 blocks in S will correspond to a 2-by-2 diagonal block in T. The $balance parameter is currently ignored, since generalized balancing is not yet implemented. 131 132=item gsl_eigen_gen($A, $B, $alpha, $beta, $w) - This function computes the eigenvalues of the real generalized nonsymmetric matrix pair ($A, $B), and stores them as pairs in ($alpha, $beta), where $alpha is complex and $beta is real, both are vectors. The elements of $beta are normalized to be non-negative. If S is desired, it is stored in $A on output. If T is desired, it is stored in $B on output. The ordering of eigenvalues in ($alpha, $beta) follows the ordering of the diagonal blocks in the Schur forms S and T. In rare cases, this function may fail to find all eigenvalues. If this occurs, an error code is returned (1). 133 134=item gsl_eigen_gen_QZ($A, $B, $alpha, $beta, $Q, $Z, $w) - This function is identical to gsl_eigen_gen except it also computes the left and right Schur vectors and stores them into $Q matrix and $Z matrix respectively. 135 136=item gsl_eigen_genv_alloc($n) - This function allocates a workspace for computing eigenvalues and eigenvectors of n-by-n real generalized nonsymmetric eigensystems. 137 138=item gsl_eigen_genv_free($w) - This function frees the memory associated with the workspace $w. 139 140=item gsl_eigen_genv($A, $B, $alpha, $beta, $evec, $w) - This function computes eigenvalues and right eigenvectors of the n-by-n real generalized nonsymmetric matrix pair ($A, $B). The eigenvalues are stored in ($alpha, $beta) where $alpha is a complex vector and $beta a real vector and the eigenvectors are stored in $evec complex matrix. It first calls gsl_eigen_gen to compute the eigenvalues, Schur forms, and Schur vectors. Then it finds eigenvectors of the Schur forms and backtransforms them using the Schur vectors. The Schur vectors are destroyed in the process, but can be saved by using gsl_eigen_genv_QZ. The computed eigenvectors are normalized to have unit magnitude. On output, ($A, $B) contains the generalized Schur form (S, T). If gsl_eigen_gen fails, no eigenvectors are computed, and an error code is returned (1). 141 142=item gsl_eigen_genv_QZ($A, $B, $alpha, $beta, $evec, $Q, $Z, $w) - This function is identical to gsl_eigen_genv except it also computes the left and right Schur vectors and stores them into $Q and $Z matrices respectively. 143 144=item gsl_eigen_symmv_sort($eval, $evec, $sort_type) - This function simultaneously sorts the eigenvalues stored in the vector $eval and the corresponding real eigenvectors stored in the columns of the matrix $evec according to the value of the parameter $sort_type which is one of the constant included in this module. 145 146=item gsl_eigen_hermv_sort($eval, $evec, $sort_type) - This function simultaneously sorts the eigenvalues stored in the vector $eval and the corresponding real eigenvectors stored in the columns of the matrix $evec according to the value of the parameter $sort_type which is one of the constant included in this module. 147 148=item gsl_eigen_nonsymmv_sort($eval, $evec, $sort_type) - This function simultaneously sorts the eigenvalues stored in the vector $eval and the corresponding complex eigenvectors stored in the columns of the complex matrix $evec into ascending or descending order according to the value of the parameter $sort_type. Only $GSL_EIGEN_SORT_ABS_ASC and $GSL_EIGEN_SORT_ABS_DESC are supported due to the eigenvalues being complex. 149 150=item gsl_eigen_gensymmv_sort($eval, $evec, $sort_type) - This function simultaneously sorts the eigenvalues stored in the vector $eval and the corresponding real eigenvectors stored in the columns of the matrix $evec according to the value of the parameter $sort_type which is one of the constant included in this module. 151 152=item gsl_eigen_genhermv_sort($eval, $evec, $sort_type) - This function simultaneously sorts the eigenvalues stored in the vector $eval and the corresponding real eigenvectors stored in the columns of the matrix $evec according to the value of the parameter $sort_type which is one of the constant included in this module. 153 154=item gsl_eigen_genv_sort($eval, $evec, $sort_type) - This function simultaneously sorts the eigenvalues stored in the vector $eval and the corresponding complex eigenvectors stored in the columns of the complex matrix $evec into ascending or descending order according to the value of the parameter $sort_type. Only $GSL_EIGEN_SORT_ABS_ASC and $GSL_EIGEN_SORT_ABS_DESC are supported due to the eigenvalues being complex. 155 156=item gsl_schur_gen_eigvals 157 158=item gsl_schur_solve_equation 159 160=item gsl_schur_solve_equation_z 161 162=item gsl_eigen_jacobi 163 164=item gsl_eigen_invert_jacobi 165 166=back 167 168This module also includes these constants : 169 170=over 171 172=item $GSL_EIGEN_SORT_VAL_ASC - ascending order in numerical value 173 174=item $GSL_EIGEN_SORT_VAL_DESC - descending order in numerical value 175 176=item $GSL_EIGEN_SORT_ABS_ASC - ascending order in magnitude 177 178=item $GSL_EIGEN_SORT_ABS_DESC - descending order in magnitude 179 180=back 181 182For more informations on the functions, we refer you to the GSL official documentation: 183L<http://www.gnu.org/software/gsl/manual/html_node/> 184 185 186 187=head1 EXAMPLES 188 189This example shows how to use the gsl_eigen_symmv functions to find the eigenvalues and eigenvectors of a matrix. 190 191 use Math::GSL::Vector qw/:all/; 192 use Math::GSL::Matrix qw/:all/; 193 use Math::GSL::Eigen qw/:all/; 194 my $w = gsl_eigen_symmv_alloc(2); 195 my $m = gsl_matrix_alloc(2,2); 196 gsl_matrix_set($m, 0, 0, 2); 197 gsl_matrix_set($m, 0, 1, 1); 198 gsl_matrix_set($m, 1, 0, 1); 199 gsl_matrix_set($m, 1, 1, 2); 200 my $eval = gsl_vector_alloc(2); 201 my $evec = gsl_matrix_alloc(2,2); 202 gsl_eigen_symmv($m, $eval, $evec, $w); 203 gsl_eigen_gensymmv_sort($eval, $evec, $GSL_EIGEN_SORT_ABS_ASC); 204 print "The first eigenvalue is : " . gsl_vector_get($eval, 0) . "\n"; 205 print "The second eigenvalue is : " . gsl_vector_get($eval, 1) . "\n"; 206 my $x = gsl_matrix_get($evec, 0, 0); 207 my $y = gsl_matrix_get($evec, 0, 1); 208 print "The first eigenvector is [$x, $y] \n"; 209 $x = gsl_matrix_get($evec, 1, 0); 210 $y = gsl_matrix_get($evec, 1, 1); 211 print "The second eigenvector is [$x, $y] \n"; 212 213=head1 AUTHORS 214 215Jonathan "Duke" Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com> 216 217=head1 COPYRIGHT AND LICENSE 218 219Copyright (C) 2008-2021 Jonathan "Duke" Leto and Thierry Moisan 220 221This program is free software; you can redistribute it and/or modify it 222under the same terms as Perl itself. 223 224=cut 225%} 226