Metadata-Version: 1.1
Name: pymatsolver
Version: 0.0.3
Summary: pymatsolver: Matrix Solvers for Python
Home-page: http://simpeg.xyz/
Author: Rowan Cockett
Author-email: rowanc1@gmail.com
License: MIT
Download-URL: http://github.com/rowanc1/pymatsolver
Description: pymatsolver
        ***********
        
        .. image:: https://img.shields.io/pypi/v/pymatsolver.svg
            :target: https://crate.io/packages/pymatsolver/
            :alt: Latest PyPI version
        
        .. image:: https://img.shields.io/badge/license-MIT-blue.svg
            :target: https://github.com/rowanc1/pymatsolver/blob/master/LICENSE
            :alt: MIT license.
        
        .. image:: https://img.shields.io/travis/rowanc1/pymatsolver.svg
            :target: https://travis-ci.org/rowanc1/pymatsolver
            :alt: Travis CI build status
        
        .. image:: https://codecov.io/gh/rowanc1/pymatsolver/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/rowanc1/pymatsolver
            :alt: Coverage status
        
        
        A (sparse) matrix solver for python.
        
        Solving Ax = b should be as easy as:
        
        .. code-block:: python
        
            Ainv = Solver(A)
            x = Ainv * b
        
        In pymatsolver I provide a number of wrappers to existing numerical packages. Nothing fancy here.
        
        Solvers Available
        =================
        
        All solvers work with :code:`scipy.sparse` matricies, and a single or multiple right hand sides using :code:`numpy`:
        
        * L/U Triangular Solves
        * Wrapping of SciPy matrix solvers (direct and indirect)
        * Pardiso solvers now that MKL comes with conda!
        
        
        Code:
        https://github.com/rowanc1/pymatsolver
        
        
        Tests:
        https://travis-ci.org/rowanc1/pymatsolver
        
        
        Bugs & Issues:
        https://github.com/rowanc1/pymatsolver/issues
        
        License: MIT
        
Keywords: matrix solver
Platform: Windows
Platform: Linux
Platform: Solaris
Platform: Mac OS-X
Platform: Unix
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Natural Language :: English
