LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages

◆ lze()

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

Definition at line 3453 of file zblat3.f.

3454*
3455* Tests if two arrays are identical.
3456*
3457* Auxiliary routine for test program for Level 3 Blas.
3458*
3459* -- Written on 8-February-1989.
3460* Jack Dongarra, Argonne National Laboratory.
3461* Iain Duff, AERE Harwell.
3462* Jeremy Du Croz, Numerical Algorithms Group Ltd.
3463* Sven Hammarling, Numerical Algorithms Group Ltd.
3464*
3465* .. Scalar Arguments ..
3466 INTEGER LR
3467* .. Array Arguments ..
3468 COMPLEX*16 RI( * ), RJ( * )
3469* .. Local Scalars ..
3470 INTEGER I
3471* .. Executable Statements ..
3472 DO 10 i = 1, lr
3473 IF( ri( i ).NE.rj( i ) )
3474 $ GO TO 20
3475 10 CONTINUE
3476 lze = .true.
3477 GO TO 30
3478 20 CONTINUE
3479 lze = .false.
3480 30 RETURN
3481*
3482* End of LZE
3483*
logical function lze(ri, rj, lr)
Definition zblat2.f:3075
Here is the call graph for this function: