LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
logical function lze ( complex*16, dimension( * )  RI,
complex*16, dimension( * )  RJ,
integer  LR 
)

Definition at line 2590 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:3050

Here is the call graph for this function: