cxroots


Namecxroots JSON
Version 2.1.0 PyPI version JSON
download
home_pagehttps://rparini.github.io/cxroots/
SummaryFind all the roots (zeros) of a complex analytic function within a given contour in the complex plane.
upload_time2023-12-27 17:03:28
maintainer
docs_urlNone
authorRobert Parini
requires_python>=3.8
licenseBSD-3-Clause
keywords roots zeros complex analytic functions
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |pkg_img| |doi| |tests| |coverage|

.. |tests| image:: https://github.com/rparini/cxroots/workflows/tests/badge.svg
    :target: https://github.com/rparini/cxroots/actions

.. |doi| image:: https://zenodo.org/badge/79802240.svg
    :target: https://zenodo.org/badge/latestdoi/79802240

.. |pkg_img| image:: https://badge.fury.io/py/cxroots.svg
    :target: https://badge.fury.io/py/cxroots

.. |coverage| image:: https://coveralls.io/repos/github/rparini/cxroots/badge.svg
	:target: https://coveralls.io/github/rparini/cxroots


cxroots
=======

cxroots is a Python package for finding all the roots of a function, *f(z)*, of a single complex variable within a given contour, *C*, in the complex plane.  It requires only that both:

-  *f(z)* has no roots or poles on *C*
-  *f(z)* is analytic in the interior of *C*

The implementation is primarily based on [KB]_ and evaluates contour integrals involving *f(z)* and its derivative *f'(z)* to determine the roots.  If *f'(z)* is not provided then it is approximated using a finite difference method.  The roots are further refined using Newton-Raphson if *f'(z)* is given or Muller's method if not.  See the `documentation <https://rparini.github.io/cxroots/>`_ for a more details and a tutorial.

With `Python <http://www.python.org/>`_ installed you can install cxroots by entering in the terminal/command line

.. code:: bash

    pip install cxroots

Example
-------

.. code:: python

    from numpy import exp, cos, sin
    f = lambda z: (exp(2*z)*cos(z)-1-sin(z)+z**5)*(z*(z+2))**2
    
    from cxroots import Circle
    C = Circle(0,3)
    roots = C.roots(f)
    roots.show()


.. Relative images do not display on pypi
.. image:: https://github.com/rparini/cxroots/blob/master/README_resources/readme_example.png?raw=true

.. code:: python

    print(roots)


.. literalinclude readme_example.txt doesn't work on github
.. code::

	 Multiplicity |               Root              
	------------------------------------------------
	      2       | -2.000000000000 +0.000000000000i
	      1       | -0.651114070264 -0.390425719088i
	      1       | -0.651114070264 +0.390425719088i
	      3       |  0.000000000000 +0.000000000000i
	      1       |  0.648578080954 -1.356622683988i
	      1       |  0.648578080954 +1.356622683988i
	      1       |  2.237557782467 +0.000000000000i


See also
--------

The Fortran 90 package `ZEAL <http://cpc.cs.qub.ac.uk/summaries/ADKW>`_ is a direct implementation of [KB]_.

Citing cxroots
--------------

  \R. Parini. *cxroots: A Python module to find all the roots of a complex analytic function within a given contour* (2018), https://github.com/rparini/cxroots https://doi.org/10.5281/zenodo.7013117

BibTex:

.. code::

	@misc{cxroots,
	  author = {Robert Parini},
	  title = {{cxroots: A Python module to find all the roots of a complex analytic function within a given contour}},
          doi = {10.5281/zenodo.7013116},
          url = {https://github.com/rparini/cxroots},
	  year = {2018}
	}

----------

Development
-----------
- Install the `pre-commit <https://pre-commit.com/>`_ and then run :code:`pre-commit install`.  The pre-commit scripts can also be run manually with :code:`pre-commit run --all-files`
- The project uses:

  - `Black <https://github.com/psf/black/>`_ to maintain consistent formatting. It is run as part of the pre-commit hook and is recommended to be run on save in the developer's editor.
  - `isort <https://pycqa.github.io/isort/>`_ to sensibly order import statements in Python files. It is also run as part of the pre-commit hook.

Release Procedure
-----------------
Making a release on GitHub with the tag vX.Y.Z will update the documentation on `master` and push cxroots at the tagged commit to PyPI.

The documentation can be manually generated by running `./create_docs` in the `docs_src` directory.

References
----------

.. [KB] \P. Kravanja and M. Van Barel.  *Computing the Zeros of Analytic Functions*. Springer, Berlin, Heidelberg, 2000.



            

Raw data

            {
    "_id": null,
    "home_page": "https://rparini.github.io/cxroots/",
    "name": "cxroots",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "roots zeros complex analytic functions",
    "author": "Robert Parini",
    "author_email": "robert.parini@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/65/ca/352d4ce9a10b98bae26cca8553830474e16246c320e7c62bb4e5c750054e/cxroots-2.1.0.tar.gz",
    "platform": "all",
    "description": "|pkg_img| |doi| |tests| |coverage|\n\n.. |tests| image:: https://github.com/rparini/cxroots/workflows/tests/badge.svg\n    :target: https://github.com/rparini/cxroots/actions\n\n.. |doi| image:: https://zenodo.org/badge/79802240.svg\n    :target: https://zenodo.org/badge/latestdoi/79802240\n\n.. |pkg_img| image:: https://badge.fury.io/py/cxroots.svg\n    :target: https://badge.fury.io/py/cxroots\n\n.. |coverage| image:: https://coveralls.io/repos/github/rparini/cxroots/badge.svg\n\t:target: https://coveralls.io/github/rparini/cxroots\n\n\ncxroots\n=======\n\ncxroots is a Python package for finding all the roots of a function, *f(z)*, of a single complex variable within a given contour, *C*, in the complex plane.  It requires only that both:\n\n-  *f(z)* has no roots or poles on *C*\n-  *f(z)* is analytic in the interior of *C*\n\nThe implementation is primarily based on [KB]_ and evaluates contour integrals involving *f(z)* and its derivative *f'(z)* to determine the roots.  If *f'(z)* is not provided then it is approximated using a finite difference method.  The roots are further refined using Newton-Raphson if *f'(z)* is given or Muller's method if not.  See the `documentation <https://rparini.github.io/cxroots/>`_ for a more details and a tutorial.\n\nWith `Python <http://www.python.org/>`_ installed you can install cxroots by entering in the terminal/command line\n\n.. code:: bash\n\n    pip install cxroots\n\nExample\n-------\n\n.. code:: python\n\n    from numpy import exp, cos, sin\n    f = lambda z: (exp(2*z)*cos(z)-1-sin(z)+z**5)*(z*(z+2))**2\n    \n    from cxroots import Circle\n    C = Circle(0,3)\n    roots = C.roots(f)\n    roots.show()\n\n\n.. Relative images do not display on pypi\n.. image:: https://github.com/rparini/cxroots/blob/master/README_resources/readme_example.png?raw=true\n\n.. code:: python\n\n    print(roots)\n\n\n.. literalinclude readme_example.txt doesn't work on github\n.. code::\n\n\t Multiplicity |               Root              \n\t------------------------------------------------\n\t      2       | -2.000000000000 +0.000000000000i\n\t      1       | -0.651114070264 -0.390425719088i\n\t      1       | -0.651114070264 +0.390425719088i\n\t      3       |  0.000000000000 +0.000000000000i\n\t      1       |  0.648578080954 -1.356622683988i\n\t      1       |  0.648578080954 +1.356622683988i\n\t      1       |  2.237557782467 +0.000000000000i\n\n\nSee also\n--------\n\nThe Fortran 90 package `ZEAL <http://cpc.cs.qub.ac.uk/summaries/ADKW>`_ is a direct implementation of [KB]_.\n\nCiting cxroots\n--------------\n\n  \\R. Parini. *cxroots: A Python module to find all the roots of a complex analytic function within a given contour* (2018), https://github.com/rparini/cxroots https://doi.org/10.5281/zenodo.7013117\n\nBibTex:\n\n.. code::\n\n\t@misc{cxroots,\n\t  author = {Robert Parini},\n\t  title = {{cxroots: A Python module to find all the roots of a complex analytic function within a given contour}},\n          doi = {10.5281/zenodo.7013116},\n          url = {https://github.com/rparini/cxroots},\n\t  year = {2018}\n\t}\n\n----------\n\nDevelopment\n-----------\n- Install the `pre-commit <https://pre-commit.com/>`_ and then run :code:`pre-commit install`.  The pre-commit scripts can also be run manually with :code:`pre-commit run --all-files`\n- The project uses:\n\n  - `Black <https://github.com/psf/black/>`_ to maintain consistent formatting. It is run as part of the pre-commit hook and is recommended to be run on save in the developer's editor.\n  - `isort <https://pycqa.github.io/isort/>`_ to sensibly order import statements in Python files. It is also run as part of the pre-commit hook.\n\nRelease Procedure\n-----------------\nMaking a release on GitHub with the tag vX.Y.Z will update the documentation on `master` and push cxroots at the tagged commit to PyPI.\n\nThe documentation can be manually generated by running `./create_docs` in the `docs_src` directory.\n\nReferences\n----------\n\n.. [KB] \\P. Kravanja and M. Van Barel.  *Computing the Zeros of Analytic Functions*. Springer, Berlin, Heidelberg, 2000.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Find all the roots (zeros) of a complex analytic function within a given contour in the complex plane.",
    "version": "2.1.0",
    "project_urls": {
        "Homepage": "https://rparini.github.io/cxroots/"
    },
    "split_keywords": [
        "roots",
        "zeros",
        "complex",
        "analytic",
        "functions"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd36252e1bc8f6b382fdc53ee412376cd88ab322a95fdcaea8adad34c1ee65c1",
                "md5": "d9aebc9d01f52518d8091fc7975048c7",
                "sha256": "0672927381ff2889d67e21cc0fdf14547585101f7ec59d7718f522a0ee6e47f5"
            },
            "downloads": -1,
            "filename": "cxroots-2.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d9aebc9d01f52518d8091fc7975048c7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 54279,
            "upload_time": "2023-12-27T17:03:26",
            "upload_time_iso_8601": "2023-12-27T17:03:26.666114Z",
            "url": "https://files.pythonhosted.org/packages/fd/36/252e1bc8f6b382fdc53ee412376cd88ab322a95fdcaea8adad34c1ee65c1/cxroots-2.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65ca352d4ce9a10b98bae26cca8553830474e16246c320e7c62bb4e5c750054e",
                "md5": "84e8fb0ad484d0860fcaf6cec6cca483",
                "sha256": "9b4b28b18d763e377d606e79fcb9815d29224c6a76c8e81324a47eb09998f20e"
            },
            "downloads": -1,
            "filename": "cxroots-2.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "84e8fb0ad484d0860fcaf6cec6cca483",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 41659,
            "upload_time": "2023-12-27T17:03:28",
            "upload_time_iso_8601": "2023-12-27T17:03:28.575050Z",
            "url": "https://files.pythonhosted.org/packages/65/ca/352d4ce9a10b98bae26cca8553830474e16246c320e7c62bb4e5c750054e/cxroots-2.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-27 17:03:28",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "cxroots"
}
        
Elapsed time: 0.15789s