mirror of
https://github.com/gonum/gonum.git
synced 2025-10-06 07:37:03 +08:00
mat: move SolveQR* onto QR
This commit is contained in:
@@ -95,7 +95,7 @@ func (m *Dense) Solve(a, b Matrix) error {
|
||||
case ar > ac:
|
||||
var qr QR
|
||||
qr.Factorize(a)
|
||||
return m.SolveQR(&qr, false, b)
|
||||
return qr.Solve(m, false, b)
|
||||
default:
|
||||
var lq LQ
|
||||
lq.Factorize(a)
|
||||
|
Reference in New Issue
Block a user