{"id":25498798,"url":"https://github.com/adisen99/differential-equations","last_synced_at":"2026-07-10T13:32:11.558Z","repository":{"id":150031191,"uuid":"264964603","full_name":"adisen99/Differential-Equations","owner":"adisen99","description":"Python and MATLAB code to find the solution of First Order Differential Equations given a certain initial/boundary condition.","archived":false,"fork":false,"pushed_at":"2020-07-08T08:06:38.000Z","size":10,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-05T16:50:30.057Z","etag":null,"topics":["differential-equations","euler-methods","milne","numerical-analysis","numerical-methods","predictor-corrector","runge-kutta-methods"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adisen99.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-05-18T14:27:56.000Z","updated_at":"2022-11-18T07:07:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"e2ac7a3d-8666-4ce0-88ad-2baa1630fcab","html_url":"https://github.com/adisen99/Differential-Equations","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adisen99/Differential-Equations","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adisen99%2FDifferential-Equations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adisen99%2FDifferential-Equations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adisen99%2FDifferential-Equations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adisen99%2FDifferential-Equations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adisen99","download_url":"https://codeload.github.com/adisen99/Differential-Equations/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adisen99%2FDifferential-Equations/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35333326,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-10T02:00:06.465Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["differential-equations","euler-methods","milne","numerical-analysis","numerical-methods","predictor-corrector","runge-kutta-methods"],"created_at":"2025-02-19T02:55:08.133Z","updated_at":"2026-07-10T13:32:11.552Z","avatar_url":"https://github.com/adisen99.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Differential-Equations\nPython and MATLAB code to find the solution of First Order Differential Equations given a certain initial/boundary condition.\n\n_______________________________________________________________________________________________________________________________\n\n\n### Included files\nThere are in total 4 files in the repository, each following a different algorithm, namely **Euler's Method** and the **Milne's Predictor-Corrector Method** and also **Modified Euler's Method or Runge-Kutte2** and finally **Runge-Kutte Method or RK4**. Each folder contains **MATLAB or .m** and **Python or .py**. So you can use either syntax and program/language to numerically determine the roots of an equation/function using the given Methods or algorithms.\n\nTo access the files you can either Download the zip file or use the following command from your terminal\n\n\n``\ngit clone https://github.com/adisen99/Differential-Equations.git\n``\n\nthen\n\n\n``\ncd Differential-Equations \n``\n\n## Dependencies for Python -\nThis program uses the following libraries as dependencies-\n\n* Matplotlib\n* NumPy\n* SciPy\n\n### Installing dependencies/packages\n\n* For Windows/Linux/Mac users\n\nYou can install these libraries using ``pip`` (if you have a virtual environment created and only want to install the libraries for that particular file/directory)\n\n``\npip install \u003cname of the library\u003e\n``\n\nor Alternatively you can install using pip for your own user system-wide\n\n``\npython -m pip install --user \u003cname of the libraries separated by a space\u003e\n``\n\nor you could use ``conda`` (if you are using Anaconda IDE)\n\n``\nconda install \u003cname of the library\u003e\n``\n\nor (If you are using a Linux distribution) then you can simply use you distro's package manager to install the packages (but it will install the packages system wide)\n\n* For Debian/Ubuntu users-\n\n``\nsudo apt install python-\u003cname of the library\u003e\n``\n\n* For Fedora users-\n\n``\nsudo dnf install numpy scipy python-matplotlib \n``\n\n* For Arch users-\n\n``\nsudo pacman -S python-\u003cpackage name\u003e\n``\n\nor \n\n``\nyay -S python-\u003cpackage name\u003e\n``\n\nMost python packages are in the ArchLinux repositories and the packages that are not are in AUR (ArchLinux User Repositories) - for these packages you have to download the PKGBUILD file and compile. After that, you have to use PACMAN to finish the installation\n\n``\nmakepkg -s\n``\n``\nsudo pacman -U 'compiled-package'\n``\n\n* For Mac users-\n\nMac doesn’t have a preinstalled package manager, but there are a couple of popular package managers you can install. For Python 3.5 with Macports , execute this command in a terminal:\n\n``\nsudo port install py35-numpy py35-scipy py35-matplotlib \n``\n\nor Alternatively [Homebrew](https://brew.sh) has an incomplete coverage of the SciPy ecosystem, but does install these packages:\n\n``\nbrew install numpy scipy matplotlib ipython jupyter\n``\n\n\n#### All the instructions related to the code are given in the code as Comments.\n\n\n## Happy Coding\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadisen99%2Fdifferential-equations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadisen99%2Fdifferential-equations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadisen99%2Fdifferential-equations/lists"}