Implement a QR solver wrapper
This commit is contained in:
parent
bb5d739e5d
commit
bb47b07422
10 changed files with 90 additions and 6 deletions
|
|
@ -241,6 +241,11 @@ namespace rotgen
|
|||
|
||||
parent& base() { return static_cast<parent&>(*this); }
|
||||
parent const& base() const { return static_cast<parent const&>(*this); }
|
||||
|
||||
concrete_type qr_solve(map const& rhs) const
|
||||
{
|
||||
return concrete_type(base().qr_solve(rhs.base()));
|
||||
};
|
||||
};
|
||||
|
||||
template<typename R1, typename R2, int O1, typename S1, int O2, typename S2>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue