Merge pull request #2635 from ilayn/patch-1

BUG: Fix the loop range in ZHEEQUB.f
This commit is contained in:
Martin Kroeker
2020-05-30 14:37:12 +02:00
committed by GitHub

View File

@@ -271,7 +271,7 @@
AVG = AVG / N
STD = 0.0D0
DO I = N+1, N
DO I = N+1, 2*N
WORK( I ) = S( I-N ) * WORK( I-N ) - AVG
END DO
CALL ZLASSQ( N, WORK( N+1 ), 1, SCALE, SUMSQ )