M*x=0
Eigen線形代数ライブラリを使用して自明でない解を得るにはどうすればよいですか。私はこれを試しましたが、解決策はすべてゼロです。
Matrix<float,2,3> m ;
Matrix<float,2,1> y ;
m << 2 , 3 ,5 , -4 , 2, 3;
y(0,0) = 0;
y(1,0) = 0;
cout << "Here is matrix m:" << endl << m << endl;
cout << "Here is matrix y:" << endl << y << endl;
cout<<"solution: \n"<<m.fullPivLu().solve(y);