function r8blt_print ( n, ml, a, title ) %*****************************************************************************80 % %% R8BLT_PRINT prints a R8BLT matrix. % % Discussion: % % The R8BLT storage format is appropriate for a banded lower triangular matrix. % The matrix is assumed to be zero below the ML-th subdiagonal. % The matrix is stored in an ML+1 by N array, in which the diagonal % appears in the first row, followed by successive subdiagonals. % Columns are preserved. % % Example: % % N = 5, ML = 2 % % A11 0 0 0 0 % A21 A22 0 0 0 % A31 A32 A33 0 0 % 0 A42 A43 A44 0 % 0 0 A53 A54 A55 % --- --- % --- % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 07 April 2006 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of the matrix. % % Input, integer ML, the lower bandwidth. % % Input, real A(ML+1,N), the R8BLT matrix. % % Input, string TITLE, a title to be printed. % r8blt_print_some ( n, ml, a, 1, 1, n, n, title ); return end