mat: move SolveQR* onto QR

This commit is contained in:
kortschak
2017-06-30 14:46:34 +09:30
committed by Dan Kortschak
parent d87e74cea0
commit bba47c3605
3 changed files with 14 additions and 14 deletions

View File

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