NAG Library Routine Document

x03abf  (complex_prec)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

x03abf calculates the value of a complex scalar product using basic precision or additional precision and adds it to a complex initial value.

2
Specification

Fortran Interface
Subroutine x03abf ( a, isizea, b, isizeb, n, istepa, istepb, cx, dx, sw, ifail)
Integer, Intent (In):: isizea, isizeb, n, istepa, istepb
Integer, Intent (Inout):: ifail
Complex (Kind=nag_wp), Intent (In):: a(isizea), b(isizeb), cx
Complex (Kind=nag_wp), Intent (Out):: dx
Logical, Intent (In):: sw
C Header Interface
#include nagmk26.h
void  x03abf_ ( const Complex a[], const Integer *isizea, const Complex b[], const Integer *isizeb, const Integer *n, const Integer *istepa, const Integer *istepb, const Complex *cx, Complex *dx, const logical *sw, Integer *ifail)

3
Description

x03abf calculates the scalar product of two complex vectors and adds it to an initial value c to give a correctly rounded result d:
d=c+i=1naibi.  
If n<1, d=c.
The vector elements ai and bi are stored in selected elements of the one-dimensional array arguments a and b, which in the subroutine from which x03abf is called may be identified with parts of possibly multidimensional arrays according to the standard Fortran rules. For example, the vectors may be parts of a row or column of a matrix. See Section 5 for details, and Section 10 for an example.
The products are accumulated in basic precision or additional precision depending on the argument sw.
This routine has been designed primarily for use as an auxiliary routine by other routines in the NAG Library, especially those in the chapters on Linear Algebra.

4
References

None.

5
Arguments

1:     aisizea – Complex (Kind=nag_wp) arrayInput
On entry: the elements of the first vector.
The ith vector element is stored in the array element ai-1×istepa+1 . In your subroutine from which x03abf is called, a can be part of a multidimensional array and the actual argument must be the array element containing the first vector element.
2:     isizea – IntegerInput
On entry: the dimension of the array a as declared in the (sub)program from which x03abf is called.
The upper bound for isizea is found by multiplying together the dimensions of a as declared in your subroutine from which x03abf is called, subtracting the starting position and adding 1.
Constraint: isizean-1×istepa+1.
3:     bisizeb – Complex (Kind=nag_wp) arrayInput
On entry: the elements of the second vector.
The ith vector element is stored in the array element bi-1×istepb+1 . In your subroutine from which x03abf is called, b can be part of a multidimensional array and the actual argument must be the array element containing the first vector element.
4:     isizeb – IntegerInput
On entry: the dimension of the array b as declared in the (sub)program from which x03abf is called.
The upper bound for isizeb is found by multiplying together the dimensions of b as declared in your subroutine from which x03abf is called, subtracting the starting position and adding 1.
Constraint: isizebn-1×istepb+1.
5:     n – IntegerInput
On entry: n, the number of elements in the scalar product.
6:     istepa – IntegerInput
On entry: the step length between elements of the first vector in array a.
Constraint: istepa>0.
7:     istepb – IntegerInput
On entry: the step length between elements of the second vector in array b.
Constraint: istepb>0.
8:     cx – Complex (Kind=nag_wp)Input
On entry: the initial value c.
9:     dx – Complex (Kind=nag_wp)Output
On exit: the result d.
10:   sw – LogicalInput
On entry: the precision to be used in the calculation.
sw=.TRUE.
additional precision.
sw=.FALSE.
basic precision.
11:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry,istepa0,
oristepb0.
ifail=2
On entry,isizea<n-1×istepa+1,
orisizeb<n-1×istepb+1.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

If the calculation is in additional precision, the result is correct to full implementation accuracy provided that exceptionally severe cancellation does not occur in the summation. If the calculation is in basic precision, such accuracy cannot be guaranteed.

8
Parallelism and Performance

x03abf is not threaded in any implementation.

9
Further Comments

The time taken by x03abf is approximately proportional to n and also depends on whether basic precision or additional precision is used.

10
Example

This example calculates the scalar product of the second column of the matrix A and the vector b, and add it to an initial value of 1+i, where
A= -1 -i 1 -2+3i i 2i -0 -1-i 1-2i ,  b= i 1-i -i .  

10.1
Program Text

Program Text (x03abfe.f90)

10.2
Program Data

Program Data (x03abfe.d)

10.3
Program Results

Program Results (x03abfe.r)

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