Talk:LU decomposition

Revision as of 16:33, 18 November 2014 by Waynes (talk | contribs)

The Python example has a divide by zero error for the matrix

b = [[1, 1, 1, 1], [1, 1, -1, -1], [1, -1, 0, 0], [0, 0, 1, -1]]

although a LUP decomposition exists: [1]

The permutation matrix has to be updated at each step, but that will make the code a lot more complicated.

Return to "LU decomposition" page.