Metadata-Version: 1.0
Name: symeig
Version: 1.5
Summary: The symeig module contains a python wrapper for the LAPACK functions to solve the standard and generalized eigenvalue problems for symmetric and hermitian matrices.
Home-page: http://mdp-toolkit.sourceforge.net/symeig.html
Author: Pietro Berkes and Tiziano Zito
Author-email: berkes@brandeis.edu, tiziano.zito@bccn-berlin.de
License: BSD license
Download-URL: http://sourceforge.net/project/showfiles.php?group_id=116959
Description: 
        The symeig module contains a Python wrapper for the LAPACK functions to solve
        the standard and generalized eigenvalue problems for symmetric and hermitian
        matrices. Those specialized algorithms give an important
        speed-up with respect to the generic LAPACK eigenvalue problem solver used by
        NumPy (linalg.eig and linalg.eigh).
        
        The wrapper function symeig automatically selects the appropriate LAPACK
        routine. It is also possible to request only a subset of all eigenvalues, which
        consumes less memory and results sometimes in an additional speed-up,
        especially for large matrices.
        
        The symeig routine is integrated in the 0.7 release of SciPy. It is
        available there as scipy.linalg.eigh with a slightly different signature.
        
Platform: Any
