Home > K25104 > LinearSystems > Cholesky_script.m

Cholesky_script

PURPOSE ^

Usage example for Cholesky

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

 Usage example for Cholesky
 related to Exercise 2.6

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % Usage example for Cholesky
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 [Q] = Cholesky(A)

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