function b = r83_vxm ( n, a, x ) %*****************************************************************************80 % %% R83_VXM multiplies a vector by an R83 matrix. % % Discussion: % % The r83 storage format is used for a tridiagonal matrix. % The superdiagonal is stored in entries (1,2:N), the diagonal in % entries (2,1:N), and the subdiagonal in (3,1:N-1). Thus, the % original matrix is "collapsed" vertically into the array. % % Example: % % Here is how a R83 matrix of order 5 would be stored: % % * A12 A23 A34 A45 % A11 A22 A33 A44 A55 % A21 A32 A43 A54 * % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 30 January 2004 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of the linear system. % % Input, real A(3,N), the R83 matrix. % % Input, real X(N), the vector to be multiplied by A'. % % Output, real B(N), the product A' * x. % b(1:n) = a(2,1:n) .* x(1:n); b(1:n-1) = b(1:n-1) + a(3,1:n-1) .* x(2:n); b(2:n) = b(2:n) + a(1,2:n) .* x(1:n-1); return end