LAPACK 3.12.1
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 2640 of file c_zblat3.f.

2641*
2642* Tests if two arrays are identical.
2643*
2644* Auxiliary routine for test program for Level 3 Blas.
2645*
2646* -- Written on 8-February-1989.
2647* Jack Dongarra, Argonne National Laboratory.
2648* Iain Duff, AERE Harwell.
2649* Jeremy Du Croz, Numerical Algorithms Group Ltd.
2650* Sven Hammarling, Numerical Algorithms Group Ltd.
2651*
2652* .. Scalar Arguments ..
2653 INTEGER LR
2654* .. Array Arguments ..
2655 COMPLEX*16 RI( * ), RJ( * )
2656* .. Local Scalars ..
2657 INTEGER I
2658* .. Executable Statements ..
2659 DO 10 i = 1, lr
2660 IF( ri( i ).NE.rj( i ) )
2661 $ GO TO 20
2662 10 CONTINUE
2663 lze = .true.
2664 GO TO 30
2665 20 CONTINUE
2666 lze = .false.
2667 30 RETURN
2668*
2669* End of LZE.
2670*
logical function lze(ri, rj, lr)
Definition zblat2.f:3075
Here is the call graph for this function: