nag_sparse_real_gen_matvec (f11xa) computes either the matrix-vector product
, or the transposed matrix-vector product
, according to the value of the argument
trans, where
is an
by
sparse nonsymmetric matrix, of arbitrary sparsity pattern. The matrix
is stored in coordinate storage (CS) format (see
Coordinate storage (CS) format in the F11 Chapter Introduction). The array
a stores all nonzero elements of
, while arrays
irow and
icol store the corresponding row and column indices respectively.
It is envisaged that a common use of
nag_sparse_real_gen_matvec (f11xa) will be to compute the matrix-vector product required in the application of
nag_sparse_real_gen_basic_solver (f11be) to sparse linear systems. An illustration of this usage appears in
Example in
nag_sparse_real_gen_precon_ssor_solve (f11dd).
None.
The computed vector
satisfies the error bound:
- , if , or
- ,
if ,
where
is a modest linear function of
, and
is the
machine precision
The time taken for a call to
nag_sparse_real_gen_matvec (f11xa) is proportional to
nz.
It is expected that a common use of
nag_sparse_real_gen_matvec (f11xa) will be to compute the matrix-vector product required in the application of
nag_sparse_real_gen_basic_solver (f11be) to sparse linear systems. In this situation
nag_sparse_real_gen_matvec (f11xa) is likely to be called many times with the same matrix
. In the interests of both reliability and efficiency you are recommended to set
for the first of such calls, and to set
for all subsequent calls.
function f11xa_example
fprintf('f11xa example results\n\n');
a = [2; 1; 1;-1; 4; 1; 1; 1; 2;-2; 3];
irow = int64([1; 1; 2; 2; 3; 3; 3; 4; 4; 5; 5]);
icol = int64([1; 2; 3; 4; 1; 3; 5; 4; 5; 2; 5]);
x = [0.7; 0.16; 0.52; 0.77; 0.28];
trans = 'N';
check = 'C';
[y, ifail] = f11xa( ...
trans, a, irow, icol, check, x);
fprintf('Matrix-vector product:\n');
disp(y);
trans = 'T';
[y, ifail] = f11xa( ...
trans, a, irow, icol, check, x);
fprintf('Transposed matrix-vector product:\n');
disp(y);