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

◆ lce()

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

Definition at line 3066 of file cblat2.f.

3067*
3068* Tests if two arrays are identical.
3069*
3070* Auxiliary routine for test program for Level 2 Blas.
3071*
3072* -- Written on 10-August-1987.
3073* Richard Hanson, Sandia National Labs.
3074* Jeremy Du Croz, NAG Central Office.
3075*
3076* .. Scalar Arguments ..
3077 INTEGER LR
3078* .. Array Arguments ..
3079 COMPLEX RI( * ), RJ( * )
3080* .. Local Scalars ..
3081 INTEGER I
3082* .. Executable Statements ..
3083 DO 10 i = 1, lr
3084 IF( ri( i ).NE.rj( i ) )
3085 $ GO TO 20
3086 10 CONTINUE
3087 lce = .true.
3088 GO TO 30
3089 20 CONTINUE
3090 lce = .false.
3091 30 RETURN
3092*
3093* End of LCE
3094*
logical function lce(ri, rj, lr)
Definition cblat2.f:3067
Here is the call graph for this function:
Here is the caller graph for this function: