Skip to content

Commit f1a62e1

Browse files
tvknkortschak
authored andcommitted
mat: fix dst matrix shape check in QR.RTo
Fixed a typo in row/column size check, the expected row size was incorrectly checked against the column size.
1 parent 4cb1c6f commit f1a62e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mat/qr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ func (qr *QR) RTo(dst *Dense) {
149149
dst.ReuseAs(r, c)
150150
} else {
151151
r2, c2 := dst.Dims()
152-
if c != r2 || c != c2 {
152+
if r != r2 || c != c2 {
153153
panic(ErrShape)
154154
}
155155
}

0 commit comments

Comments
 (0)