Project Description:
I need this assignment within 4 hours.I am willing to pay $ 50 for it...
I attached the program requirements, my NSD for Gauss-Jorden Method, and my input file. I need write a C++ program that can solve system of linear equations with gauss-jorden Method. There 4 system of linear equations are store in the input file "gauss.dat" in the form of metrics.
such as:
the system of linear equation: 3x+5y+2z=1
3x+2y+7z=1
3x+6y+8z=1
in the input file would be below:
3 <------ is the dimension of the metrix
1 3 5 2
1 3 2 7
1 3 6 8
I need to get the matrices from the input file.
fin.open ("gauss.dat") etc.
Then solve the answer with gauss-Jorden method
The equations and the answers need to be put in the output file "gauss.txt".