Metadata-Version: 2.1
Name: fderiv
Version: 0.1.2
Summary: Five point derivatives
Home-page: UNKNOWN
Author: Sudhanva Lalit
Author-email: sudsid@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# fderiv package

# Introduction
This package contains derivative function.It calculates the derivatives of a given arrays of x values and function values. It returns first and second order derivatives using the five point method.     
** The minimum size of array should be 5 for both x and y values.**

# Files
fderiv.py

# Installation
$ pip install fderiv

# Usage
from fderiv import fderiv    
first-derivative, second-derivative = fderiv.fd5pt(x, y)


