Implement a QR solver wrapper
This commit is contained in:
parent
bb5d739e5d
commit
bb47b07422
10 changed files with 90 additions and 6 deletions
|
|
@ -170,6 +170,16 @@
|
|||
}
|
||||
#endif
|
||||
|
||||
//==================================================================================================
|
||||
// Solvers
|
||||
//==================================================================================================
|
||||
SOURCENAME CLASSNAME::qr_solve(CLASSNAME const& rhs) const
|
||||
{
|
||||
SOURCENAME result;
|
||||
result.storage()->assign(storage_->data.colPivHouseholderQr().solve(rhs.storage_->data).eval());
|
||||
return result;
|
||||
}
|
||||
|
||||
//==================================================================================================
|
||||
// Operators
|
||||
//==================================================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue