-
Notifications
You must be signed in to change notification settings - Fork 20.8k
Closed
Labels
Description
Is your feature request related to a problem? Please describe.
Find inverse of a given square matrix.
For eg: Given a matrix of size =2.
|1 2|
|3 4|
Find its inverse.
Output:
-1.9999999999999998 1.0
1.4999999999999998 -0.49999999999999994
Describe the solution you'd like
I plan to use Gaussian elimination method to solve this problem. That follows by making the given matrix as an upper triangular matrix and then perform back substitution.
Please Assign me this feature.
Thanks
siriak