Elimination part of Gaussian Elimination Programming Software Development by vavazoom …, and why it is not eliminating correctly. [CODE]void Matrix::gaussianElimination() { int i, j, max; for(j = 0; j < N… << "Start Gaussian Elimination" << endl; gaussianElimination(); for(row = 0; row < N; ++row) { for(col = 0… Re: Elimination part of Gaussian Elimination Programming Software Development by arkoenig This is more code than I want to bother reading without a clue as to what I'm looking for. However, the following oddity did jump out at me: The for statement on line 10 has as its subject the while statement on lines 11 through 19. Is that what you had in mind? If so, why is the code not indented that way? If not, what [I]did[/I] you have … Re: Elimination part of Gaussian Elimination Programming Software Development by vavazoom Yes, I had a few different versions I was playing with...the for() was supposed to be taken out. Re: Elimination part of Gaussian Elimination Programming Software Development by tesuji Hi, glad to see you again I thought her old but similar problem would have already been solved by master mike (Indeed, I had mistaken decomposition with elimination, I say sorry for that.) -- tesu Re: Elimination part of Gaussian Elimination Programming Software Development by mike_2000_17 Well "master mike" is back to quote tesuji... Your program crashes because of this portion of the code (line 40 to 52): [CODE] //For each i > j: row i - (Cij/Cjj)* row j i = j++; for(int row_i = i; row_i < N; row_i++) { for(int row_j = j; row_j <= N; row_j++) {…