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 2589 of file c_zblat2.f.

2590*
2591* Tests if two arrays are identical.
2592*
2593* Auxiliary routine for test program for Level 2 Blas.
2594*
2595* -- Written on 10-August-1987.
2596* Richard Hanson, Sandia National Labs.
2597* Jeremy Du Croz, NAG Central Office.
2598*
2599* .. Scalar Arguments ..
2600 INTEGER LR
2601* .. Array Arguments ..
2602 COMPLEX*16 RI( * ), RJ( * )
2603* .. Local Scalars ..
2604 INTEGER I
2605* .. Executable Statements ..
2606 DO 10 i = 1, lr
2607 IF( ri( i ).NE.rj( i ) )
2608 $ GO TO 20
2609 10 CONTINUE
2610 lze = .true.
2611 GO TO 30
2612 20 CONTINUE
2613 lze = .false.
2614 30 RETURN
2615*
2616* End of LZE.
2617*
logical function lze(ri, rj, lr)
Definition zblat2.f:3075
Here is the call graph for this function: