mirror of
https://github.com/gonum/gonum.git
synced 2025-10-08 00:20:11 +08:00
mat: move SolveLU* onto LU
This commit is contained in:
@@ -91,7 +91,7 @@ func (m *Dense) Solve(a, b Matrix) error {
|
||||
}
|
||||
var lu LU
|
||||
lu.Factorize(a)
|
||||
return m.SolveLU(&lu, false, b)
|
||||
return lu.Solve(m, false, b)
|
||||
case ar > ac:
|
||||
var qr QR
|
||||
qr.Factorize(a)
|
||||
|
Reference in New Issue
Block a user