lapack/gonum: require exact length of tau in QR routines

This commit is contained in:
Vladimir Chalupecky
2023-10-05 19:30:15 +02:00
committed by Vladimír Chalupecký
parent bd767ae5eb
commit 6e2f5c5890
17 changed files with 57 additions and 55 deletions

View File

@@ -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)