NAG Library Routine Document

f06gsf  (zdotci)

 Contents

    1  Purpose
    7  Accuracy
    10  Example

1
Purpose

f06gsf (zdotci) computes the scalar product of a conjugated sparse complex vector with a complex vector.

2
Specification

Fortran Interface
Function f06gsf ( nz, x, indx, y)
Complex (Kind=nag_wp):: f06gsf
Integer, Intent (In):: nz, indx(*)
Complex (Kind=nag_wp), Intent (In):: x(*), y(*)
C Header Interface
#include nagmk26.h
Complex  f06gsf_ ( const Integer *nz, const Complex x[], const Integer indx[], const Complex y[])
The routine may be called by its BLAS name zdotci.

3
Description

f06gsf (zdotci) returns, via the function name, the value of the scalar product
xHy  
where x is a sparse complex vector stored in compressed form, and y is a complex vector in full storage form.

4
References

Dodson D S, Grimes R G and Lewis J G (1991) Sparse extensions to the Fortran basic linear algebra subprograms ACM Trans. Math. Software 17 253–263

5
Arguments

1:     nz – IntegerInput
On entry: the number of nonzeros in the sparse vector x.
2:     x* – Complex (Kind=nag_wp) arrayInput
Note: the dimension of the array x must be at least max1,nz .
On entry: the compressed vector x. x contains xi for iJ.
3:     indx* – Integer arrayInput
Note: the dimension of the array indx must be at least max1,nz .
On entry: indx must contain the set of indices J.
4:     y* – Complex (Kind=nag_wp) arrayInput
Note: the dimension of the array y must be at least maxkindxk .
On entry: the vector y. Only elements corresponding to indices in indx are accessed.

6
Error Indicators and Warnings

None.

7
Accuracy

Not applicable.

8
Parallelism and Performance

f06gsf (zdotci) is not threaded in any implementation.

9
Further Comments

None.

10
Example

None.
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017