1SRSCL(1)            LAPACK auxiliary routine (version 3.2)            SRSCL(1)
2
3
4

NAME

6       SRSCL - multiplies an n-element real vector x by the real scalar 1/a
7

SYNOPSIS

9       SUBROUTINE SRSCL( N, SA, SX, INCX )
10
11           INTEGER       INCX, N
12
13           REAL          SA
14
15           REAL          SX( * )
16

PURPOSE

18       SRSCL  multiplies  an  n-element  real vector x by the real scalar 1/a.
19       This is done without overflow or underflow as long as
20       the final result x/a does not overflow or underflow.
21

ARGUMENTS

23       N       (input) INTEGER
24               The number of components of the vector x.
25
26       SA      (input) REAL
27               The scalar a which is used to divide each component of  x.   SA
28               must be >= 0, or the subroutine will divide by zero.
29
30       SX      (input/output) REAL array, dimension
31               (1+(N-1)*abs(INCX)) The n-element vector x.
32
33       INCX    (input) INTEGER
34               The increment between successive values of the vector SX.  > 0:
35               SX(1) = X(1) and SX(1+(i-1)*INCX) = x(i),     1< i<= n
36
37
38
39 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008                        SRSCL(1)
Impressum