-
Notifications
You must be signed in to change notification settings - Fork 32
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
[feature] Support complex matrix [2] #73
[feature] Support complex matrix [2] #73
Conversation
- Added gecp and gepp for LU factorization using Gauss Elimination - Added Lin alg traits like determinant and inverse of a complex matrix
- Removed temporary FPComplexMatrix trait and added FPMatrix trait as generic that is used for Complex matrix too
- Removed temporary ComplexMutMatrix trait and added MutMatrix trait as generic that is used for Complex matrix too
- Use type Scalar to make Algorithms trait generic to be used by both Vector and ComplexVector - Only swap_with_perms() implemented for ComplexVector
- Added solve vec and solve matrix from Linalg trait
- Added traits for ComplexMatrix
- Instead of using similar functions for complex matrices, used generics for the functions in low_level.rs
- Added gecp and gepp for LU factorization using Gauss Elimination - Added Lin alg traits like determinant and inverse of a complex matrix
- Use type Scalar to make Algorithms trait generic to be used by both Vector and ComplexVector - Only swap_with_perms() implemented for ComplexVector
- Added solve vec and solve matrix from Linalg trait
- Added traits for ComplexMatrix
- Instead of using similar functions for complex matrices, used generics for the functions in low_level.rs
…ssue35 Backup 2nd cleanup complex issue35 is merged back
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved. Thanks for your work on issue #35 for Complex Matrix support.
- Reviewed changes: traits successfully converted to generic, tests passing.
- Minor issue: some imports are from 'fuga' instead of base files. I'll fix this post-merge.
- Good work overall.
I want to sincerely apologize for the delay in reviewing your PRs. My recent schedule has been extremely demanding, but I assure you that your contributions are valued. I'm committed to reviewing your other PRs as soon as possible. Your patience and continued efforts are truly appreciated.
Ready to merge. Thank you for your valuable contribution.
Related to issue #35