This module destined to calculation of derivatives using numerical methods
Project description
Derivative Library
This code is a library for calculating derived functions.
Installation
To install the library, use pip:
pip install derivative_lib
Usage
To use the library, import the Derivative
class from the library:
from derivative_lib import Derivative
Then you can create an instance of the Derivative
class by passing the function you want to differentiate as an argument:
python def func(x):
return x**2
derivative = Derivative(func)
Methods
tailor_app
Calculates the derivative of the function at the point x0
using the Taylor method.
Usage example:
result = derivative.tailor_app(2)
polinom_app
Calculates the derivative of the function at the point x0
using the polynomial method.
Usage example:
result = derivative.polinom_app(2)
second_derivative
Calculates the second derivative of the function at the point x0
.
Usage example:
result = derivative.second_derivative(2)
threepoint_pattern(x0, second_deriv=False)
Calculates the first or second derivative of a function at the point x0
using the three-point method.
Usage example:
result = derivative.threepoint_pattern(2, second_deriv=True)
Exception handling
If the function was set using a grid, the methods tailor_app
, polinom_app
and threepoint_pattern
will throw an exception. If an error occurred while using the function, the methods will also throw an exception.
License
This library is available under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for derivative_mode-0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5bdcf25ba605b37ed32c398a7d802f840da3a031829220393ce21e78d684a58 |
|
MD5 | 043310b2257b89dd6cd9b198445f4682 |
|
BLAKE2b-256 | 5f1f9cb873cd12933d9d2d62192dd868ae2e1589a0699385e1748b287eb19bb1 |