{"id":29863549,"url":"https://github.com/ab23ms233/matrix-calculator","last_synced_at":"2025-08-11T19:10:36.495Z","repository":{"id":293993566,"uuid":"985710039","full_name":"ab23ms233/Matrix-Calculator","owner":"ab23ms233","description":"A Python-based matrix calculator for performing operations like addition, multiplication, inverse, determinant, eigenvalues, diagonalization, and matrix functions using NumPy, SymPy, and SciPy.","archived":false,"fork":false,"pushed_at":"2025-07-24T07:34:35.000Z","size":2489,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-24T11:28:02.923Z","etag":null,"topics":["linear-algebra","numpy","scipy"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ab23ms233.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-05-18T11:13:12.000Z","updated_at":"2025-07-24T07:34:39.000Z","dependencies_parsed_at":"2025-07-01T07:30:22.978Z","dependency_job_id":"645b9e95-5b61-4869-8435-3f5bee57e6c3","html_url":"https://github.com/ab23ms233/Matrix-Calculator","commit_stats":null,"previous_names":["ab23ms233/matrix-calculator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ab23ms233/Matrix-Calculator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ab23ms233%2FMatrix-Calculator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ab23ms233%2FMatrix-Calculator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ab23ms233%2FMatrix-Calculator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ab23ms233%2FMatrix-Calculator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ab23ms233","download_url":"https://codeload.github.com/ab23ms233/Matrix-Calculator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ab23ms233%2FMatrix-Calculator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269940294,"owners_count":24500446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"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":["linear-algebra","numpy","scipy"],"created_at":"2025-07-30T08:00:44.460Z","updated_at":"2025-08-11T19:10:36.479Z","avatar_url":"https://github.com/ab23ms233.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧮 Matrix Calculator\n\nThis is a Python-based Matrix Calculator that allows users to perform a wide range of matrix operations through a command-line interface and Jupyter notebook demo.\n\n---\n\n## 📂 Project Structure\n\n```\nMatrix-Calculator/\n├── Class_MtxCalc.py              # Contains the MatrixCalculator class with core logic\n├── Program_MtxCalc.py            # CLI program that interacts with the user\n├── Matrix_Calculator_Demo.ipynb  # Jupyter notebook demonstrating usage of each method\n├── requirements.txt              # Dependencies for pip users\n├── environment.yaml              # Conda environment file\n└── .gitignore                    # Ignores unnecessary files that are auto-generated locally\n\n```\n\n---\n\n## ⚙️ Features\n\n- Matrix Addition \u0026 Multiplication\n- Determinant calculation\n- Inverse of a matrix\n- Eigenvalues and Eigenvectors\n- Diagonalization\n- Powers of a matrix\n- Matrix function operations:  \n  `sin`, `cos`, `exp`, `log`, `sinh`, `cosh`\n\n---\n\n## 💻 How to Run\n\n### 🔹 Option 1: Using pip\n\n```bash\n# Create virtual environment (recommended)\npython -m venv venv\nsource venv/bin/activate    # On Windows: venv\\Scripts\\activate\n\n# Install dependencies\npip install -r requirements.txt\n\n# Run the calculator\npython Program_MtxCalc.py\n```\n\n---\n\n### 🔹 Option 2: Using conda\n\n```bash\n# Create environment\nconda env create -f environment.yaml\n\n# Activate it\nconda activate matrix-calculator\n\n# Run the calculator\npython Program_MtxCalc.py\n```\n\n---\n\n## 📓 Jupyter Notebook Demo\n\nOpen `Matrix_Calculator_Demo.ipynb` in Jupyter to see how each method in the `MatrixCalculator` class works individually.\n\n```bash\njupyter notebook Matrix_Calculator_Demo.ipynb\n```\n\n---\n\n## 🧠 Technologies Used\n\n- [NumPy](https://numpy.org/) — for matrix and numerical operations  \n- [SymPy](https://www.sympy.org/) — for symbolic mathematics  \n- [SciPy](https://www.scipy.org/) — for matrix function evaluations\n\n---\n\n## 📌 Notes\n\n- Only square matrices are supported for operations like determinant, inverse, diagonalization, etc.\n- The CLI guides you through entering matrices interactively and supports undoing rows (`u`) or stopping input (`x`).\n\n---\n\n## 🙌 Acknowledgements\n\nThanks for using the Matrix Calculator!  \nPull requests and suggestions are welcome. 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fab23ms233%2Fmatrix-calculator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fab23ms233%2Fmatrix-calculator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fab23ms233%2Fmatrix-calculator/lists"}