pynamicalsys 1.0.1__tar.gz

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.
Files changed (34) hide show
  1. pynamicalsys-1.0.1/.gitignore +20 -0
  2. pynamicalsys-1.0.1/CHANGELOG.md +31 -0
  3. pynamicalsys-1.0.1/CITATION.cff +10 -0
  4. pynamicalsys-1.0.1/CONTRIBUTING.md +47 -0
  5. pynamicalsys-1.0.1/LICENSE +674 -0
  6. pynamicalsys-1.0.1/MANIFEST.in +11 -0
  7. pynamicalsys-1.0.1/PKG-INFO +779 -0
  8. pynamicalsys-1.0.1/README.md +87 -0
  9. pynamicalsys-1.0.1/pyproject.toml +31 -0
  10. pynamicalsys-1.0.1/setup.cfg +4 -0
  11. pynamicalsys-1.0.1/src/pynamicalsys/__init__.py +24 -0
  12. pynamicalsys-1.0.1/src/pynamicalsys/__version__.py +21 -0
  13. pynamicalsys-1.0.1/src/pynamicalsys/common/__init__.py +16 -0
  14. pynamicalsys-1.0.1/src/pynamicalsys/common/basin_analysis.py +170 -0
  15. pynamicalsys-1.0.1/src/pynamicalsys/common/recurrence_quantification_analysis.py +426 -0
  16. pynamicalsys-1.0.1/src/pynamicalsys/common/utils.py +344 -0
  17. pynamicalsys-1.0.1/src/pynamicalsys/continuous_time/__init__.py +16 -0
  18. pynamicalsys-1.0.1/src/pynamicalsys/core/__init__.py +16 -0
  19. pynamicalsys-1.0.1/src/pynamicalsys/core/basin_metrics.py +206 -0
  20. pynamicalsys-1.0.1/src/pynamicalsys/core/continuous_dynamical_systems.py +18 -0
  21. pynamicalsys-1.0.1/src/pynamicalsys/core/discrete_dynamical_systems.py +3391 -0
  22. pynamicalsys-1.0.1/src/pynamicalsys/core/plot_styler.py +155 -0
  23. pynamicalsys-1.0.1/src/pynamicalsys/core/time_series_metrics.py +139 -0
  24. pynamicalsys-1.0.1/src/pynamicalsys/discrete_time/__init__.py +16 -0
  25. pynamicalsys-1.0.1/src/pynamicalsys/discrete_time/dynamical_indicators.py +1226 -0
  26. pynamicalsys-1.0.1/src/pynamicalsys/discrete_time/models.py +435 -0
  27. pynamicalsys-1.0.1/src/pynamicalsys/discrete_time/trajectory_analysis.py +1459 -0
  28. pynamicalsys-1.0.1/src/pynamicalsys/discrete_time/transport.py +501 -0
  29. pynamicalsys-1.0.1/src/pynamicalsys/discrete_time/validators.py +313 -0
  30. pynamicalsys-1.0.1/src/pynamicalsys.egg-info/PKG-INFO +779 -0
  31. pynamicalsys-1.0.1/src/pynamicalsys.egg-info/SOURCES.txt +32 -0
  32. pynamicalsys-1.0.1/src/pynamicalsys.egg-info/dependency_links.txt +1 -0
  33. pynamicalsys-1.0.1/src/pynamicalsys.egg-info/requires.txt +3 -0
  34. pynamicalsys-1.0.1/src/pynamicalsys.egg-info/top_level.txt +1 -0
@@ -0,0 +1,20 @@
1
+ __pycache__
2
+ .vscode/
3
+ .DS_Store
4
+ *.egg-info/
5
+ tests/*.png
6
+ dist/
7
+ src/pynamicalsys/__version__.py
8
+ docs/build/
9
+ build/
10
+ paper/*.eps
11
+ paper/*.png
12
+ paper/*.svg
13
+ paper/*.dat
14
+ paper/*.py
15
+
16
+ anaconda-project.yml
17
+ make.bat
18
+ Makefile
19
+ *.egg
20
+ *.pyc
@@ -0,0 +1,31 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [v1.0.0] - 2025-06-16
9
+
10
+ ### Added
11
+
12
+ - `DiscreteDynamicalSystems` class for simulating and analyzing discrete nonlinear dynamical systems:
13
+ - Trajectory computation.
14
+ - Chaotic indicators.
15
+ - Fixed points, periodic orbits, and manifolds.
16
+ - Statistical analysis of ensemble of trajetories.
17
+ - Escape basin quantification.
18
+ - Initial release of the package
19
+ - First version of documentation
20
+ - Basic tests
21
+
22
+ - `BasinMetrics` class to compute basin metris such as basin entropy and boundary dimension.
23
+
24
+ - `TimeSeriesMetrics` class to compute metrics related to time series analysis.
25
+
26
+ - `PlotStyler` utility class to globally configure and apply consistent styling for Matplotlib plots.
27
+
28
+ ---
29
+
30
+ <!-- Dummy heading to avoid ending on a transition -->
31
+ ##
@@ -0,0 +1,10 @@
1
+ cff-version: 1.2.0
2
+ message: "If you use this software, please cite it as below."
3
+ authors:
4
+ - family-names: Rolim Sales
5
+ given-names: Matheus
6
+ orcid: https://orcid.org/0000-0002-1121-6371
7
+ title: "pynamicalsys"
8
+ version: 1.0.0
9
+ date-released: 2025-06-16
10
+ repository-code: "https://github.com/mrolims/pynamicalsys.git"
@@ -0,0 +1,47 @@
1
+ # Contributing to PyCandy
2
+
3
+ We appreciate your interest in contributing to **PyCandy**! Whether you're fixing a bug, suggesting an improvement, or adding a new feature, your help is welcome.
4
+
5
+ ## How to Contribute
6
+
7
+ 1. **Fork the Repository**
8
+ Create a personal copy of this repository.
9
+
10
+ 2. **Create a Feature Branch**
11
+ Use a descriptive branch name:
12
+
13
+ ```bash
14
+ $ git checkout -b fix-typo-in-readme
15
+ ```
16
+
17
+ 3. **Make Changes**
18
+
19
+ Follow the coding style and ensure existing functionality it not broken. Add tests if relevant.
20
+
21
+ 4. **Submit a Pull Request**
22
+
23
+ Push your branch and open a pull request on GitHub. Include a clear description of your changes.
24
+
25
+ 5. **Wait for Review**
26
+
27
+ We'll review your PR and may request changes or offer suggestions.
28
+
29
+ ## Coding Style
30
+
31
+ - Follow **PEP8** standards for Pycode code.
32
+ - Use **docstrings** (PEP257) for public classes, functions, and modules.
33
+ - Include **type hints** where appropriate.
34
+ - Keep commits clean and descriptive.
35
+
36
+ ## Bug Reports & Feature Requests
37
+
38
+ - Submit an [issue](https://github.com/mrolims/pynamicalsys/issues) to report bugs or suggest new features.
39
+ - Include steps to reproduce, error messages, or use cases when possible.
40
+
41
+ ## Code of Conduct
42
+
43
+ We strive to maintain a respectful and inclusive community. Please follow our [code of conduct](https://pynamicalsys.readthedocs.io/en/latest/) when interacting.
44
+
45
+ ## Thank You
46
+
47
+ Your contributions help improve the project and support the community — thank you!