Browse Source

Fix actual arguments (Reference-LAPACK PR 885)

pull/4155/head
Martin Kroeker GitHub 3 years ago
parent
commit
87ac38827d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      lapack-netlib/SRC/zgelqt3.f

+ 2
- 1
lapack-netlib/SRC/zgelqt3.f View File

@@ -174,7 +174,8 @@
*
* Compute Householder transform when M=1
*
CALL ZLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
CALL ZLARFG( N, A( 1, 1 ), A( 1, MIN( 2, N ) ), LDA,
& T( 1, 1 ) )
T(1,1)=CONJG(T(1,1))
*
ELSE


Loading…
Cancel
Save