Metadata-Version: 2.3
Name: gfuncpy
Version: 0.1.0
Summary: 
Author: beginnerSC
Author-email: cc12s@my.fsu.edu
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: matplotlib (>=3.10.3,<4.0.0)
Requires-Dist: numpy (>=2.3.1,<3.0.0)
Requires-Dist: scipy (>=1.16.0,<2.0.0)
Description-Content-Type: text/markdown

# GFuncPy

GFuncPy is a powerful numerical and plotting library tailored for research and educational applications. It represents functions in discrete form using $x$ and $y$ values, allowing for straightforward arithmetic operations and numerical analysis. This intuitive approach greatly simplifies complex computations, making quantitative research more accessible and productive.

Here's an example showcasing the simplicity and expressiveness of GFuncPy:

```python
from gfuncpy import Identity

x = Identity.uniform_grid(0, 2, 1000)

(x**2 - 2).root()
```

This example calculates the root of $x^2 - 2$ within the range $[0, 2]$, yielding $\sqrt{2} \approx 1.4142135\ldots$. Dive into the Quick Start guide for more examples and detailed instructions.

