Skip to main content

A package to solve nonlinear equations

Project description

NewtonPy

A package to solve nonlinear equations by newtonpy–Raphson method

Exemple

One variable

The function:

Equation 1

The Jacobian of function:

Equation 2

import newtonpy
import numpy as np

(converged, error, solution) = newtonpy.solve(
    lambda x: x ** 2,
    lambda x: np.array([2 * x]),
    x0=np.array([1.2]),
    tol=0.001,
    maxiter=100,
)
print(solution)

Multivariable

The function:

Equation 3

The Jacobian of function:

Equation 4

import newtonpy
import numpy as np

(converged, error, solution) = newtonpy.solve(
    lambda x: np.array([x[0] ** 2 + x[1] ** 2, 2 * x[1]]),
    lambda x: np.array([[2 * x[0], 2 * x[1]], [0, 2]]),
    x0=np.array([1, 1]),
    tol=1e-3,
    maxiter=10,
    verbose=True,
)
print(solution)

Documentation

import newtonpy
help(newtonpy)

License and Copyright

MIT License

Copyright (c) 2020 Felipe M. S. Monteiro (fmarkson@outlook.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

newtonpy-0.1.0.tar.gz (3.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

newtonpy-0.1.0-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file newtonpy-0.1.0.tar.gz.

File metadata

  • Download URL: newtonpy-0.1.0.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/4.19.0-9-amd64

File hashes

Hashes for newtonpy-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b646ca526b5afbc0a445ebd8c5c13d4af08ddec397d55bccaa9761716b5bae70
MD5 6f8efac44abb2ac62f6fceb948a6f059
BLAKE2b-256 77f53cf61f3f370fc491d8b1fe210c8711a0b189fb6cab2ad459900d5ff903cb

See more details on using hashes here.

File details

Details for the file newtonpy-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: newtonpy-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 4.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/4.19.0-9-amd64

File hashes

Hashes for newtonpy-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a43f2bddd501ba3b198c2f0637c243e6c0441f42e7d735c57f77a515e2f0ec94
MD5 d7680561a0045d999ec7e523e4727e07
BLAKE2b-256 3b0fee25629fd8df264c21fcd67bf7325fdbd8a8db5179f9a39335b05b927c25

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page