numcheat 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numcheat/__init__.py +28 -0
- numcheat/core.py +1956 -0
- numcheat-0.1.0.dist-info/METADATA +57 -0
- numcheat-0.1.0.dist-info/RECORD +6 -0
- numcheat-0.1.0.dist-info/WHEEL +4 -0
- numcheat-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: numcheat
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Шпаргалка по численным методам: готовый код методов и тексты теории по понятному имени
|
|
5
|
+
Project-URL: Homepage, https://pypi.org/project/numcheat/
|
|
6
|
+
Author-email: ВАШЕ ИМЯ <yondo565@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: cheatsheet,education,numerical-methods,численные-методы
|
|
10
|
+
Classifier: Intended Audience :: Education
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Requires-Dist: matplotlib
|
|
17
|
+
Requires-Dist: numpy
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# numcheat
|
|
21
|
+
|
|
22
|
+
Шпаргалка по численным методам: быстрый доступ к готовому коду методов и к текстам
|
|
23
|
+
теоретических ответов по понятному имени. Удобно держать под рукой в Jupyter.
|
|
24
|
+
|
|
25
|
+
## Установка
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install numcheat
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Использование
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
from numcheat import code, theory, find, ls, show
|
|
35
|
+
|
|
36
|
+
ls() # оглавление всех методов и тем
|
|
37
|
+
find("шур") # поиск по ключевому слову из задания
|
|
38
|
+
code("ньютон") # копирует готовый код метода в буфер обмена (Ctrl+V)
|
|
39
|
+
theory("штрассен") # копирует текст теоретического ответа в буфер
|
|
40
|
+
show("ньютон") # просто показать код на экране (без копирования)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Русские синонимы функций (для совместимости): `код`, `теория`, `найти`, `список`, `показать`.
|
|
44
|
+
|
|
45
|
+
## Что внутри
|
|
46
|
+
|
|
47
|
+
- **Практика** (`code` / `show`): бисекция, метод Ньютона, секущих, простая итерация,
|
|
48
|
+
Гаусса–Зейделя, интерполяция (Лагранж, сплайны), умножение матриц (наивное, Штрассен),
|
|
49
|
+
собственные значения (степенной метод, вращения Якоби, QR-алгоритм, разложение Шура,
|
|
50
|
+
QR-разложение), ОДУ (Эйлер, предиктор-корректор, Рунге–Кутта, Адамс), Фурье (ДПФ, БПФ).
|
|
51
|
+
- **Теория** (`theory`): краткие ответы на типовые теоретические вопросы.
|
|
52
|
+
|
|
53
|
+
Весь код использует только базовые средства Python, numpy и matplotlib.
|
|
54
|
+
|
|
55
|
+
## Лицензия
|
|
56
|
+
|
|
57
|
+
MIT
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
numcheat/__init__.py,sha256=LD8wEP1bzk4V-X_0bu8nBFNQTYUCU-eIPjZxLNDIl9I,1221
|
|
2
|
+
numcheat/core.py,sha256=uAFxP84RMVRzgJJD6i5tKhk5aJhvp0fUaqvGmEMaHYw,137112
|
|
3
|
+
numcheat-0.1.0.dist-info/METADATA,sha256=4xg51q0STK5jG4-DlrcpwnolsZvEbhJU-k6JaZ9k4_4,2823
|
|
4
|
+
numcheat-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
5
|
+
numcheat-0.1.0.dist-info/licenses/LICENSE,sha256=M2tgsTcpf_gZtmrTfFBg9KaNNWj7f6Ud18y2vf2g4Zw,1072
|
|
6
|
+
numcheat-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ВАШЕ ИМЯ
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|