LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
slatm1.f
Go to the documentation of this file.
1*> \brief \b SLATM1
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8* Definition:
9* ===========
10*
11* SUBROUTINE SLATM1( MODE, COND, IRSIGN, IDIST, ISEED, D, N, INFO )
12*
13* .. Scalar Arguments ..
14* INTEGER IDIST, INFO, IRSIGN, MODE, N
15* REAL COND
16* ..
17* .. Array Arguments ..
18* INTEGER ISEED( 4 )
19* REAL D( * )
20* ..
21*
22*
23*> \par Purpose:
24* =============
25*>
26*> \verbatim
27*>
28*> SLATM1 computes the entries of D(1..N) as specified by
29*> MODE, COND and IRSIGN. IDIST and ISEED determine the generation
30*> of random numbers. SLATM1 is called by SLATMR to generate
31*> random test matrices for LAPACK programs.
32*> \endverbatim
33*
34* Arguments:
35* ==========
36*
37*> \param[in] MODE
38*> \verbatim
39*> MODE is INTEGER
40*> On entry describes how D is to be computed:
41*> MODE = 0 means do not change D.
42*> MODE = 1 sets D(1)=1 and D(2:N)=1.0/COND
43*> MODE = 2 sets D(1:N-1)=1 and D(N)=1.0/COND
44*> MODE = 3 sets D(I)=COND**(-(I-1)/(N-1))
45*> MODE = 4 sets D(i)=1 - (i-1)/(N-1)*(1 - 1/COND)
46*> MODE = 5 sets D to random numbers in the range
47*> ( 1/COND , 1 ) such that their logarithms
48*> are uniformly distributed.
49*> MODE = 6 set D to random numbers from same distribution
50*> as the rest of the matrix.
51*> MODE < 0 has the same meaning as ABS(MODE), except that
52*> the order of the elements of D is reversed.
53*> Thus if MODE is positive, D has entries ranging from
54*> 1 to 1/COND, if negative, from 1/COND to 1,
55*> Not modified.
56*> \endverbatim
57*>
58*> \param[in] COND
59*> \verbatim
60*> COND is REAL
61*> On entry, used as described under MODE above.
62*> If used, it must be >= 1. Not modified.
63*> \endverbatim
64*>
65*> \param[in] IRSIGN
66*> \verbatim
67*> IRSIGN is INTEGER
68*> On entry, if MODE neither -6, 0 nor 6, determines sign of
69*> entries of D
70*> 0 => leave entries of D unchanged
71*> 1 => multiply each entry of D by 1 or -1 with probability .5
72*> \endverbatim
73*>
74*> \param[in] IDIST
75*> \verbatim
76*> IDIST is INTEGER
77*> On entry, IDIST specifies the type of distribution to be
78*> used to generate a random matrix .
79*> 1 => UNIFORM( 0, 1 )
80*> 2 => UNIFORM( -1, 1 )
81*> 3 => NORMAL( 0, 1 )
82*> Not modified.
83*> \endverbatim
84*>
85*> \param[in,out] ISEED
86*> \verbatim
87*> ISEED is INTEGER array, dimension ( 4 )
88*> On entry ISEED specifies the seed of the random number
89*> generator. The random number generator uses a
90*> linear congruential sequence limited to small
91*> integers, and so should produce machine independent
92*> random numbers. The values of ISEED are changed on
93*> exit, and can be used in the next call to SLATM1
94*> to continue the same random number sequence.
95*> Changed on exit.
96*> \endverbatim
97*>
98*> \param[in,out] D
99*> \verbatim
100*> D is REAL array, dimension ( N )
101*> Array to be computed according to MODE, COND and IRSIGN.
102*> May be changed on exit if MODE is nonzero.
103*> \endverbatim
104*>
105*> \param[in] N
106*> \verbatim
107*> N is INTEGER
108*> Number of entries of D. Not modified.
109*> \endverbatim
110*>
111*> \param[out] INFO
112*> \verbatim
113*> INFO is INTEGER
114*> 0 => normal termination
115*> -1 => if MODE not in range -6 to 6
116*> -2 => if MODE neither -6, 0 nor 6, and
117*> IRSIGN neither 0 nor 1
118*> -3 => if MODE neither -6, 0 nor 6 and COND less than 1
119*> -4 => if MODE equals 6 or -6 and IDIST not in range 1 to 3
120*> -7 => if N negative
121*> \endverbatim
122*
123* Authors:
124* ========
125*
126*> \author Univ. of Tennessee
127*> \author Univ. of California Berkeley
128*> \author Univ. of Colorado Denver
129*> \author NAG Ltd.
130*
131*> \ingroup real_matgen
132*
133* =====================================================================
134 SUBROUTINE slatm1( MODE, COND, IRSIGN, IDIST, ISEED, D, N,
135 $ INFO )
136*
137* -- LAPACK auxiliary routine --
138* -- LAPACK is a software package provided by Univ. of Tennessee, --
139* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
140*
141* .. Scalar Arguments ..
142 INTEGER IDIST, INFO, IRSIGN, MODE, N
143 REAL COND
144* ..
145* .. Array Arguments ..
146 INTEGER ISEED( 4 )
147 REAL D( * )
148* ..
149*
150* =====================================================================
151*
152* .. Parameters ..
153 REAL ONE
154 parameter( one = 1.0e0 )
155 REAL HALF
156 parameter( half = 0.5e0 )
157* ..
158* .. Local Scalars ..
159 INTEGER I
160 REAL ALPHA, TEMP
161* ..
162* .. External Functions ..
163 REAL SLARAN
164 EXTERNAL slaran
165* ..
166* .. External Subroutines ..
167 EXTERNAL slarnv, xerbla
168* ..
169* .. Intrinsic Functions ..
170 INTRINSIC abs, exp, log, real
171* ..
172* .. Executable Statements ..
173*
174* Decode and Test the input parameters. Initialize flags & seed.
175*
176 info = 0
177*
178* Quick return if possible
179*
180 IF( n.EQ.0 )
181 $ RETURN
182*
183* Set INFO if an error
184*
185 IF( mode.LT.-6 .OR. mode.GT.6 ) THEN
186 info = -1
187 ELSE IF( ( mode.NE.-6 .AND. mode.NE.0 .AND. mode.NE.6 ) .AND.
188 $ ( irsign.NE.0 .AND. irsign.NE.1 ) ) THEN
189 info = -2
190 ELSE IF( ( mode.NE.-6 .AND. mode.NE.0 .AND. mode.NE.6 ) .AND.
191 $ cond.LT.one ) THEN
192 info = -3
193 ELSE IF( ( mode.EQ.6 .OR. mode.EQ.-6 ) .AND.
194 $ ( idist.LT.1 .OR. idist.GT.3 ) ) THEN
195 info = -4
196 ELSE IF( n.LT.0 ) THEN
197 info = -7
198 END IF
199*
200 IF( info.NE.0 ) THEN
201 CALL xerbla( 'SLATM1', -info )
202 RETURN
203 END IF
204*
205* Compute D according to COND and MODE
206*
207 IF( mode.NE.0 ) THEN
208 GO TO ( 10, 30, 50, 70, 90, 110 )abs( mode )
209*
210* One large D value:
211*
212 10 CONTINUE
213 DO 20 i = 1, n
214 d( i ) = one / cond
215 20 CONTINUE
216 d( 1 ) = one
217 GO TO 120
218*
219* One small D value:
220*
221 30 CONTINUE
222 DO 40 i = 1, n
223 d( i ) = one
224 40 CONTINUE
225 d( n ) = one / cond
226 GO TO 120
227*
228* Exponentially distributed D values:
229*
230 50 CONTINUE
231 d( 1 ) = one
232 IF( n.GT.1 ) THEN
233 alpha = cond**( -one / real( n-1 ) )
234 DO 60 i = 2, n
235 d( i ) = alpha**( i-1 )
236 60 CONTINUE
237 END IF
238 GO TO 120
239*
240* Arithmetically distributed D values:
241*
242 70 CONTINUE
243 d( 1 ) = one
244 IF( n.GT.1 ) THEN
245 temp = one / cond
246 alpha = ( one-temp ) / real( n-1 )
247 DO 80 i = 2, n
248 d( i ) = real( n-i )*alpha + temp
249 80 CONTINUE
250 END IF
251 GO TO 120
252*
253* Randomly distributed D values on ( 1/COND , 1):
254*
255 90 CONTINUE
256 alpha = log( one / cond )
257 DO 100 i = 1, n
258 d( i ) = exp( alpha*slaran( iseed ) )
259 100 CONTINUE
260 GO TO 120
261*
262* Randomly distributed D values from IDIST
263*
264 110 CONTINUE
265 CALL slarnv( idist, iseed, n, d )
266*
267 120 CONTINUE
268*
269* If MODE neither -6 nor 0 nor 6, and IRSIGN = 1, assign
270* random signs to D
271*
272 IF( ( mode.NE.-6 .AND. mode.NE.0 .AND. mode.NE.6 ) .AND.
273 $ irsign.EQ.1 ) THEN
274 DO 130 i = 1, n
275 temp = slaran( iseed )
276 IF( temp.GT.half )
277 $ d( i ) = -d( i )
278 130 CONTINUE
279 END IF
280*
281* Reverse if MODE < 0
282*
283 IF( mode.LT.0 ) THEN
284 DO 140 i = 1, n / 2
285 temp = d( i )
286 d( i ) = d( n+1-i )
287 d( n+1-i ) = temp
288 140 CONTINUE
289 END IF
290*
291 END IF
292*
293 RETURN
294*
295* End of SLATM1
296*
297 END
subroutine xerbla(srname, info)
Definition cblat2.f:3285
subroutine slarnv(idist, iseed, n, x)
SLARNV returns a vector of random numbers from a uniform or normal distribution.
Definition slarnv.f:95
subroutine slatm1(mode, cond, irsign, idist, iseed, d, n, info)
SLATM1
Definition slatm1.f:136