mirror of
https://github.com/gonum/gonum.git
synced 2025-10-04 06:46:29 +08:00
lapack/gonum: require exact length of tau in QR routines
This commit is contained in:

committed by
Vladimír Chalupecký

parent
bd767ae5eb
commit
6e2f5c5890
@@ -84,7 +84,7 @@ func DlarfbTest(t *testing.T, impl Dlarfber) {
|
||||
}
|
||||
|
||||
// Use dgeqr2 to find the v vectors
|
||||
tau := make([]float64, na)
|
||||
tau := make([]float64, k)
|
||||
work := make([]float64, na)
|
||||
impl.Dgeqr2(ma, k, a, lda, tau, work)
|
||||
|
||||
|
Reference in New Issue
Block a user