Usage example for LU_banded related to Exercise 2.6
0001 % Usage example for LU_banded 0002 % related to Exercise 2.6 0003 0004 A = [1 1 0 0 0 0; 0005 1 2 1 0 0 0; 0006 0 1 2 1 0 0; 0007 0 0 1 3 1 0; 0008 0 0 0 1 3 1; 0009 0 0 0 0 1 4]; 0010 0011 [L,U] = LU_banded(A,1)