Usage example for iteration_analysis related to Exercise 2.29
0001 % Usage example for iteration_analysis 0002 % related to Exercise 2.29 0003 0004 B = [0 sqrt(3)/2 1/2; 0005 sqrt(3)/2 0 sqrt(3)/2; 0006 1/2 sqrt(3)/2 0]; 0007 C = [2 0 0; 0008 0 2 0; 0009 0 0 2]; 0010 w = 8/9; 0011 0012 [ H,E ] = iteration_analysis( C,B,w )