//example-3.5
//caption-solution by gauss elimibnation method

A=[10 -1 2;1 10 -1;2 3 20]                //matrices A and b from the above 
                                                 //system of equations
b=[4;3;7]

gausselim(A,b)            //call gauss elimination function to solve the 
                                //matrices A and b