F06FLF (PDF version)
F06 Chapter Contents
F06 Chapter Introduction
NAG Library Manual
NAG Library Routine Document
F06FLF
Note:
before using this routine, please read the Users' Note for your implementation to check the interpretation of
bold italicised
terms and other implementation-dependent details.
▸
▿
Contents
1
Purpose
2
Specification
3
Description
4
References
5
Parameters
6
Error Indicators and Warnings
7
Accuracy
8
Parallelism and Performance
9
Further Comments
10
Example
1 Purpose
F06FLF returns the absolutely largest and absolutely smallest values from a real vector.
2 Specification
SUBROUTINE F06FLF (
N
,
X
,
INCX
,
XMAX
,
XMIN
)
INTEGER
N, INCX
REAL (KIND=nag_wp)
X(*), XMAX, XMIN
3 Description
F06FLF returns the values
x
max
and
x
min
given by
x
max
=
max
i
x
i
,
x
min
=
min
i
x
i
,
where
x
is an
n
-element real vector scattered with stride
INCX
. If
n
<
1
, then
x
max
and
x
min
are returned as zero.
4 References
None.
5 Parameters
1:
N
– INTEGER
Input
On entry
:
n
, the number of elements in
x
.
2:
X
*
– REAL (KIND=nag_wp) array
Input
Note:
the dimension of the array
X
must be at least
max
1
,
1
+
N
-
1
×
INCX
.
On entry
: the
n
-element vector
x
.
x
i
must be stored in
X
1
+
i
-
1
×
INCX
, for
i
=
1
,
2
,
…
,
N
.
Intermediate elements of
X
are not referenced.
3:
INCX
– INTEGER
Input
On entry
: the increment in the subscripts of
X
between successive elements of
x
.
Constraint
:
INCX
>
0
.
4:
XMAX
– REAL (KIND=nag_wp)
Output
On exit
: the value
x
max
=
max
i
x
i
.
5:
XMIN
– REAL (KIND=nag_wp)
Output
On exit
: the value
x
min
=
min
i
x
i
.
6 Error Indicators and Warnings
None.
7 Accuracy
Not applicable.
8 Parallelism and Performance
Not applicable.
9 Further Comments
None.
10 Example
None.
F06FLF (PDF version)
F06 Chapter Contents
F06 Chapter Introduction
NAG Library Manual
© The Numerical Algorithms Group Ltd, Oxford, UK. 2015