A program to find the echelon and reduced echelon form of a matrix of any order.
The project consists of following folders:
include/– to store the custom header files.lib/– to store the definitions of custom header files.
The program consists of following classes:
Fraction- mathematical fractions.Row- matrix rows.Matrix- a matrix.
Clone the project
git clone [email protected]:saad0510/echelon-matrix-calculator.gitGo to the project directory
cd echelon-matrix-calculatorOpen the input.txt file with your favorite editor
and write:
- the order of the matrix in the first line.
- each row in a separate new line
Generate object files
g++ -c lib/*Compile && run the program
g++ main.cpp *.o -o main.out
./main.outDecember, 2021
- github : @saad0510
- email : [email protected] or [email protected]
