LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ lze()

logical function lze ( complex*16, dimension( * )  ri,
complex*16, dimension( * )  rj,
integer  lr 
)

Definition at line 3248 of file zblat3.f.

3249*
3250* Tests if two arrays are identical.
3251*
3252* Auxiliary routine for test program for Level 3 Blas.
3253*
3254* -- Written on 8-February-1989.
3255* Jack Dongarra, Argonne National Laboratory.
3256* Iain Duff, AERE Harwell.
3257* Jeremy Du Croz, Numerical Algorithms Group Ltd.
3258* Sven Hammarling, Numerical Algorithms Group Ltd.
3259*
3260* .. Scalar Arguments ..
3261 INTEGER LR
3262* .. Array Arguments ..
3263 COMPLEX*16 RI( * ), RJ( * )
3264* .. Local Scalars ..
3265 INTEGER I
3266* .. Executable Statements ..
3267 DO 10 i = 1, lr
3268 IF( ri( i ).NE.rj( i ) )
3269 $ GO TO 20
3270 10 CONTINUE
3271 lze = .true.
3272 GO TO 30
3273 20 CONTINUE
3274 lze = .false.
3275 30 RETURN
3276*
3277* End of LZE
3278*
logical function lze(ri, rj, lr)
Definition zblat2.f:3075
Here is the call graph for this function: