None.
Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.
Open in the MATLAB editor: f07uj_example
function f07uj_example fprintf('f07uj example results\n\n'); % Invert A, where A is Lower triangular and packed n = int64(4); ap = [ 4.30; -3.96; 0.40; -0.27; -4.87; 0.31; 0.07; -8.02; -5.95; 0.12]; uplo = 'L'; diag = 'N'; % Invert [ainv, info] = f07uj(uplo, diag, n, ap); [ifail] = x04cc( ... uplo, 'Non-unit', n, ainv, 'Inverse');
f07uj example results Inverse 1 2 3 4 1 0.2326 2 -0.1891 -0.2053 3 0.0043 -0.0079 -0.1247 4 0.8463 -0.2738 -6.1825 8.3333