1SLASSQ(1) LAPACK auxiliary routine (version 3.1) SLASSQ(1)
2
3
4
6 SLASSQ - the values scl and smsq such that ( scl**2 )*smsq = x( 1
7 )**2 +...+ x( n )**2 + ( scale**2 )*sumsq,
8
10 SUBROUTINE SLASSQ( N, X, INCX, SCALE, SUMSQ )
11
12 INTEGER INCX, N
13
14 REAL SCALE, SUMSQ
15
16 REAL X( * )
17
19 SLASSQ returns the values scl and smsq such that
20
21 where x( i ) = X( 1 + ( i - 1 )*INCX ). The value of sumsq is
22 assumed to be non-negative and scl returns the value
23
24 scl = max( scale, abs( x( i ) ) ).
25
26 scale and sumsq must be supplied in SCALE and SUMSQ and
27 scl and smsq are overwritten on SCALE and SUMSQ respectively.
28
29 The routine makes only one pass through the vector x.
30
31
33 N (input) INTEGER
34 The number of elements to be used from the vector X.
35
36 X (input) REAL array, dimension (N)
37 The vector for which a scaled sum of squares is computed. x( i
38 ) = X( 1 + ( i - 1 )*INCX ), 1 <= i <= n.
39
40 INCX (input) INTEGER
41 The increment between successive values of the vector X. INCX
42 > 0.
43
44 SCALE (input/output) REAL
45 On entry, the value scale in the equation above. On exit,
46 SCALE is overwritten with scl , the scaling factor for the sum
47 of squares.
48
49 SUMSQ (input/output) REAL
50 On entry, the value sumsq in the equation above. On exit,
51 SUMSQ is overwritten with smsq , the basic sum of squares from
52 which scl has been factored out.
53
54
55
56 LAPACK auxiliary routine (versionNo3v.e1m)ber 2006 SLASSQ(1)