{"id":15442540,"url":"https://github.com/tom-the-bomb/matrixflow","last_synced_at":"2025-04-19T19:57:09.533Z","repository":{"id":257804036,"uuid":"860699430","full_name":"Tom-the-Bomb/matrixflow","owner":"Tom-the-Bomb","description":"A rich library with implementations for mathematical matrices and vectors and their operations","archived":false,"fork":false,"pushed_at":"2025-03-27T14:34:31.000Z","size":101,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T15:40:13.254Z","etag":null,"topics":["library","linear-algebra","math","matrices","python","vectors"],"latest_commit_sha":null,"homepage":"https://matrixflow.readthedocs.io","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/Tom-the-Bomb.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}},"created_at":"2024-09-21T00:45:01.000Z","updated_at":"2025-03-27T14:34:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"c350ae52-ba70-40ff-8944-7feca6180dd5","html_url":"https://github.com/Tom-the-Bomb/matrixflow","commit_stats":null,"previous_names":["tom-the-bomb/matrixflow"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tom-the-Bomb%2Fmatrixflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tom-the-Bomb%2Fmatrixflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tom-the-Bomb%2Fmatrixflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tom-the-Bomb%2Fmatrixflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tom-the-Bomb","download_url":"https://codeload.github.com/Tom-the-Bomb/matrixflow/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249787122,"owners_count":21325569,"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","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":["library","linear-algebra","math","matrices","python","vectors"],"created_at":"2024-10-01T19:28:24.788Z","updated_at":"2025-04-19T19:57:09.518Z","avatar_url":"https://github.com/Tom-the-Bomb.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Matrixflow\n\n[![Downloads](https://static.pepy.tech/badge/matrixflow)](https://pepy.tech/project/matrixflow)\n\nA rich library with implementations for mathematical **matrices** and **vectors** and their operations\n\nRefer to the documentation over [here](https://matrixflow.readthedocs.io/en/latest/index.html)\n\n## Installation\n\nPython 3.10 or higher is required\n\n```bash\npy -m pip install matrixflow\n```\n\nor from github\n\n```bash\npy -m pip install git+https://github.com/Tom-the-Bomb/matrixflow.git\n```\n\n## Examples\n\n```py\nfrom matrixflow import Matrix, Vector\n\nA = Matrix([\n    [1, 2, 3],\n    [4, 5, 6],\n    [7, 8, 9],\n])\nprint(A.det()) # calculates the determinant\nA.transpose()   # transposes `A` in place\n\nu = Vector([1, 2, 3])\nv = Vector([4, 5, 6])\nprint(u * v)   # calculates the dot product\n```\n\nFurther examples can be found over at the documentation [here](https://matrixflow.readthedocs.io/en/latest/examples.html)\n\n## Highlight Features\n\n- **Matrices**\n    - Basic operations: addition, subtraction, scalar/matrix multiplication and other basic matrix functions\n    - Linear transformations\n    - determinant\n    - Linear system of equations:\n        - Gaussian elimination: row echelon \u0026 reduced row echelon forms\n        - Inverse\n    - and many more!\n\n- **Vectors**\n    - Basic operations: addition, subtraction, scalar/dot/cross products and other basic vector functions\n    - polar/spherical and cartesian conversions\n    - projection, rejection\n    - and many more!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-the-bomb%2Fmatrixflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftom-the-bomb%2Fmatrixflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-the-bomb%2Fmatrixflow/lists"}