disp (' This is the code of Gauss method.Is writen by Ali Ashouri') disp (' ') disp (' ') n=input(' enter (n) the number of array of matrix (n*n) :'); disp(' enter the data of matrix: from left to right then up to down '); a=cell(n,n+1); x=cell(1,n); for i=1:n x(1,i)={0}; end; for i=1:n for j=1:n+1 b=input('the number : '); a(i,j)={b}; end; end; disp(a); tic for i=1:n-1 for j=i+1:n L=cell2mat(a(i,j)); P=cell2mat(a(j,i)); if (abs(L)