Home > K25104 > LinearSystems > LU_banded_script.m

LU_banded_script

PURPOSE ^

Usage example for LU_banded

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

 Usage example for LU_banded
 related to Exercise 2.6

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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)

Generated on Mon 18-Jan-2016 10:25:49 by m2html © 2005