PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_dot_complex_prec (x03ab)
Purpose
nag_dot_complex_prec (x03ab) calculates the value of a complex scalar product using basic precision or additional precision and adds it to a complex initial value.
Syntax
[
dx,
ifail] = x03ab(
a,
b,
n,
istepa,
istepb,
cx,
sw, 'isizea',
isizea, 'isizeb',
isizeb)
[
dx,
ifail] = nag_dot_complex_prec(
a,
b,
n,
istepa,
istepb,
cx,
sw, 'isizea',
isizea, 'isizeb',
isizeb)
Description
nag_dot_complex_prec (x03ab) calculates the scalar product of two complex vectors and adds it to an initial value
to give a correctly rounded result
:
If
,
.
The vector elements
and
are stored in selected elements of the one-dimensional array arguments
a and
b, which in the function from which
nag_dot_complex_prec (x03ab) 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
Arguments for details, and
Example for an example.
The products are accumulated in
basic precision or
additional precision depending on the argument
sw.
This function has been designed primarily for use as an auxiliary function by other functions in the NAG Toolbox, especially those in the chapters on Linear Algebra.
References
None.
Parameters
Compulsory Input Parameters
- 1:
– complex array
-
The elements of the first vector.
The
th vector element is stored in the array element
. In your function from which
nag_dot_complex_prec (x03ab) 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:
– complex array
-
The elements of the second vector.
The
th vector element is stored in the array element
. In your function from which
nag_dot_complex_prec (x03ab) is called,
b can be part of a multidimensional array and the actual argument must be the array element containing the first vector element.
- 3:
– int64int32nag_int scalar
-
, the number of elements in the scalar product.
- 4:
– int64int32nag_int scalar
-
The step length between elements of the first vector in array
a.
Constraint:
.
- 5:
– int64int32nag_int scalar
-
The step length between elements of the second vector in array
b.
Constraint:
.
- 6:
– complex scalar
-
The initial value .
- 7:
– logical scalar
-
The precision to be used in the calculation.
- additional precision.
- basic precision.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
a.
The dimension of the array
a.
The upper bound for
isizea is found by multiplying together the dimensions of
a as declared in your function from which
nag_dot_complex_prec (x03ab) is called, subtracting the starting position and adding
.
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the dimension of the array
b.
The dimension of the array
b.
The upper bound for
isizeb is found by multiplying together the dimensions of
b as declared in your function from which
nag_dot_complex_prec (x03ab) is called, subtracting the starting position and adding
.
Constraint:
.
Output Parameters
- 1:
– complex scalar
-
The result .
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
On entry, | , |
or | . |
-
-
On entry, | , |
or | . |
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
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.
Further Comments
The time taken by nag_dot_complex_prec (x03ab) is approximately proportional to and also depends on whether basic precision or additional precision is used.
Example
This example calculates the scalar product of the second column of the matrix
and the vector
, and add it to an initial value of
, where
Open in the MATLAB editor:
x03ab_example
function x03ab_example
fprintf('x03ab example results\n\n');
a = [-1 + 0i 0 - 1e20i 1 + 0i;
2 + 3i 0 + 1e-19i 0 + 2i;
0 + 0i -1 - 1e20i 1 - 2i];
b = [ 0 + 1i;
1 - 1i;
0 - 1i];
n = int64(size(b,1));
cx = 1e-20 + 1i;
istepa = int64(1);
istepb = istepa;
sw = true;
[dx, ifail] = x03ab( ...
a(:,2), b, n, istepa, istepb, cx, sw);
fprintf('Accumulated dot-product = %20.15e + %20.15ei\n', ...
real(dx), imag(dx));
x03ab example results
Accumulated dot-product = 1.100000000000000e-19 + 2.000000000000000e+00i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015