Metadata-Version: 2.1
Name: Calculations
Version: 1.10
Summary: To calculate equations and draw diagrams
Home-page: https://github.com/cMneth/calculations
Author: cMneth
Author-email: cMnethh@gmail.com
License: MIT license
Platform: UNKNOWN
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: Matplotlib
Classifier: Topic :: Scientific/Engineering :: Mathematics
Description-Content-Type: text/markdown
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: wheel

# Calculations
Calculate a function and plot it in a diagram or just calculate. 

Returns x and y values.
## Installation
`pip install calculations`
## Example
```python
import calculations as cl
cl.plotfunc("x**2", start=0, end=2, points=3)
# Returns: (array([0., 1., 2.]), array([0., 1., 4.]))```

