mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
0f15a8d829
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;
|
|
}
|