Metadata-Version: 2.4
Name: Different_pack
Version: 1.1.4
Summary: This package made for solve differential equals
Author: Mikhanik
Author-email: nikolayev_m@vk.com
Keywords: equals
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Congratulations on installing DIfferent_Pack
---
- This is a **free** repository for solving differential equations. It was created by an enthusiastic school student and saved so as not to lose it.
---
## Features
1. Solving differential equations using the fourthвЂ‘order **RungeвЂ‘Kutta** method.

## Functions

### 1) **rk4(f, t0, y0, t_end, h)**
  Solves dy/dt = f(t, y) on [t0, t_end] with step h. Returns lists of values t_vals, y_vals.
## Example of operation
```js
import Diffur_Pack as dp
def test(t,y):
    x=y/t
    return x
print(dp.rk4(test,1,1,5,0.3))
```
---
# Thank you for installing :3
