mark isFullRank() deprecated,
add solve() (mix of Keir's patch and LU::solve())
=> there is big problem with complex which are not working
16 lines
246 B
C++
16 lines
246 B
C++
#include <Eigen/Core>
|
|
#include <Eigen/Array>
|
|
#include <Eigen/LU>
|
|
#include <Eigen/QR>
|
|
#include <Eigen/Cholesky>
|
|
#include <Eigen/Geometry>
|
|
|
|
using namespace Eigen;
|
|
using namespace std;
|
|
|
|
int main(int, char**)
|
|
{
|
|
${snippet_source_code}
|
|
return 0;
|
|
}
|