20 #include <boost/test/unit_test.hpp> 21 #include <boost/utility/binary.hpp> 25 BOOST_AUTO_TEST_SUITE(BOOST_TEST_MODULE)
28 std::cout <<
"test_pseudoinverse\n";
30 const unsigned int m = 3;
31 const unsigned int n = 5;
33 Matrix A = Matrix::Random(m, n);
34 Matrix Apinv = Matrix::Zero(n, m);
37 BOOST_CHECK(Matrix::Identity(m, m).
isApprox(A * Apinv));
40 BOOST_AUTO_TEST_SUITE_END()
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > Matrix
bool isApprox(const Shape &s1, const Shape &s2, const FCL_REAL tol)
BOOST_AUTO_TEST_CASE(test_pseudoinverse)
void pseudoInverse(ConstRefMatrix A, RefMatrix Apinv, double tolerance, unsigned int computationOptions=Eigen::ComputeThinU|Eigen::ComputeThinV)