linear-library
Loading...
Searching...
No Matches
QR.hpp
Go to the documentation of this file.
1#include <vector>
2
3class QR
4{
5private:
6 /* data */
7public:
8 QR(/* args */);
9 ~QR();
10 std::vector<double> vectorSolve(std::vector<double> b);
11
12};
Definition QR.hpp:4
~QR()
QR()
std::vector< double > vectorSolve(std::vector< double > b)