This is a simple C program that allows you to perform various matrix operations, including addition, subtraction, multiplication, determinant calculation, inverse calculation, rank determination, and eigenvalue calculation for square matrices.
To use this program, you need to have a C compiler installed on your system.
- Clone or download this repository.
- Compile the C program using your preferred C compiler.
- Run the compiled program in your terminal or command prompt.
- The program will prompt you to enter the order of the matrix A.
- You'll need to provide the elements of matrix A.
- Choose one of the following operations:
- Addition
- Subtraction
- Multiplication
- Determinant Calculation
- Inverse Calculation
- Rank Determination
- Eigenvalue Calculation
- Follow the on-screen instructions for each operation.
- Matrix Addition
- Matrix Subtraction
- Matrix Multiplication
- Determinant Calculation (for square matrices)
- Inverse Calculation (for square matrices)
- Rank Determination
- Eigenvalue Calculation (for square matrices)
- The program supports square matrices only for determinant calculation, inverse calculation, and eigenvalue calculation.
- Some operations may have restrictions, and the program will notify you if the operation is not possible.
Feel free to use and modify this program as needed. If you encounter any issues or have suggestions for improvement, please create an issue or pull request.
Happy matrix calculations!