Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some matrix operations #7

Closed
kaan2463 opened this issue Apr 17, 2024 · 1 comment · Fixed by #9
Closed

Add some matrix operations #7

kaan2463 opened this issue Apr 17, 2024 · 1 comment · Fixed by #9
Assignees
Labels
enhancement New feature or request

Comments

@kaan2463
Copy link
Owner

kaan2463 commented Apr 17, 2024

Some Important Matrix Operations:

  • Linear System Solver (Gauss Elimination)
  • Eigen Value decomposition
  • Singular Value Decomposition (SVD)
  • QR algorithm
  • etc.
@kaan2463 kaan2463 self-assigned this Apr 17, 2024
@kaan2463 kaan2463 added the enhancement New feature or request label Apr 17, 2024
@kaan2463
Copy link
Owner Author

kaan2463 commented Apr 21, 2024

Actually, it is not needed to implement Linear system solver, because:
For system Ax = y; (A^{-1})Ax = A^{-1}y ==> x =A^{-1}y
so it can be done by using inverse function and inverse function had already been implemented :)

@kaan2463 kaan2463 linked a pull request Apr 30, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

1 participant