Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lorransutter/discretemethods
Discrete methods library
https://github.com/lorransutter/discretemethods
discrete-mathematics euler-method finite-difference numpy python3 runge-kutta-4 runge-kutta-fehlberg secant-method
Last synced: 28 days ago
JSON representation
Discrete methods library
- Host: GitHub
- URL: https://github.com/lorransutter/discretemethods
- Owner: LorranSutter
- License: gpl-3.0
- Created: 2017-09-26T15:25:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T01:09:44.000Z (over 4 years ago)
- Last Synced: 2024-11-08T14:25:14.926Z (3 months ago)
- Topics: discrete-mathematics, euler-method, finite-difference, numpy, python3, runge-kutta-4, runge-kutta-fehlberg, secant-method
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Discrete Methods
Library create in order to have useful procedures in Métodos Discretos (Discrete Methods) course of [Universidade Federal de Juiz de Fora](http://www.ufjf.br/ufjf/)
## :pencil: Dependencies
```sh
pip3 install numpy
```## :mag: Methods
- Norm
- Inifinity norm
- Central finite difference (3rd order)
- Secant method
- Forward Euler method
- Backward Euler method
- Runge-Kutta 4th order method
- Runge-Kutta-Fehlberg method