Skip to main content
2. Matrix Inverse calculator (2x2 and 3x3) - C++ Language
What are the capabilities of this program:
- This program can find the determent of both 2x2 and 3x3 matrices
- This program can inverse of both 2x2 and 3x3 matrices.
- This program has ability to ask the user if he wants to execute this program again and again.
- if the user to use this program again the previous results will clear.
How this Program works?
- We have created two user defined functions, one for solving 2x2 matrices and second for solving 3x3 matrices.
- First the program
finds the determinant of given matrix and determines whether it is singular or
non-singular.
- If the matrix is singular it will tell the user that “Inverse
does not exist”, since the determinant is zero.
- If the
matrix is non-singular (determinant does not equal to zero) it will go ahead to
find the inverse by finding its minors, co-factors, adjoint and finally prints
out the inverse.
ZIP FOLDER CONTAINS:
- C++ Source File
- Project Report
- Project Presentation
Comments
Post a Comment