Metadata-Version: 2.1
Name: pyndamics3
Version: 0.0.32
Summary: Python Numerical Dynamics Simulator
Home-page: https://github.com/bblais/pyndamics3/tree/master/
Author: Brian Blais
Author-email: bblais@bryant.edu
License: Apache Software License 2.0
Keywords: python,dynamics,ode,systems
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib
Requires-Dist: scipy
Requires-Dist: emcee
Requires-Dist: lmfit
Requires-Dist: numdifftools
Requires-Dist: numba
Requires-Dist: tqdm
Provides-Extra: dev

# Pyndamics3


<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

This file will become your README and also the index of your
documentation.

## Install

`pip install pyndamics3`

## How to use

Some simple examples.

``` python
from pyndamics3 import Simulation
```

    pyndamics3  version  0.0.2

``` python
sim=Simulation()
sim.add("p'=a*p*(1-p/K)",1,plot=True)
sim.params(a=1,K=50)
sim.run(50)
```

![](index_files/figure-commonmark/cell-3-output-1.png)

    <Figure size 432x288 with 0 Axes>
