Usage example for stencil_order expansion of the 5-point stencil
0001 % Usage example for stencil_order 0002 % expansion of the 5-point stencil 0003 0004 A = [0 1 0; 0005 1 -4 1; 0006 0 1 0]; 0007 order = 6; 0008 [ final ] = stencil_order( A,order )