None.
Open in the MATLAB editor: f07gd_example
function f07gd_example fprintf('f07gd example results\n\n'); % Symmetric matrix A, lower triangular part packed in ap uplo = 'L'; n = int64(4); ap = [4.16 -3.12 0.56 -0.10 ... 5.03 -0.83 1.18 ... 0.76 0.34 ... 1.18]; [L, info] = f07gd( ... uplo, n, ap); [ifail] = x04cc( ... uplo, 'N', n, L, 'Cholesky factor L');
f07gd example results Cholesky factor L 1 2 3 4 1 2.0396 2 -1.5297 1.6401 3 0.2746 -0.2500 0.7887 4 -0.0490 0.6737 0.6617 0.5347