math_utils.cpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2017 CNRS
3 //
4 // This file is part of tsid
5 // tsid is free software: you can redistribute it
6 // and/or modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation, either version
8 // 3 of the License, or (at your option) any later version.
9 // tsid is distributed in the hope that it will be
10 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
11 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // General Lesser Public License for more details. You should have
13 // received a copy of the GNU Lesser General Public License along with
14 // tsid If not, see
15 // <http://www.gnu.org/licenses/>.
16 //
17 
18 #include <iostream>
19 
20 #include <boost/test/unit_test.hpp>
21 #include <boost/utility/binary.hpp>
22 
23 #include <tsid/math/utils.hpp>
24 
25 BOOST_AUTO_TEST_SUITE(BOOST_TEST_MODULE)
26 
27 BOOST_AUTO_TEST_CASE(test_pseudoinverse) {
28  std::cout << "test_pseudoinverse\n";
29  using namespace tsid::math;
30  const unsigned int m = 3;
31  const unsigned int n = 5;
32 
33  Matrix A = Matrix::Random(m, n);
34  Matrix Apinv = Matrix::Zero(n, m);
35  pseudoInverse(A, Apinv, 1e-5);
36 
37  BOOST_CHECK(Matrix::Identity(m, m).isApprox(A * Apinv));
38 }
39 
40 BOOST_AUTO_TEST_SUITE_END()
ex_4_plan_LIPM_romeo.A
A
Definition: ex_4_plan_LIPM_romeo.py:110
utils.hpp
tsid::math::pseudoInverse
void pseudoInverse(ConstRefMatrix A, RefMatrix Apinv, double tolerance, unsigned int computationOptions=Eigen::ComputeThinU|Eigen::ComputeThinV)
Definition: src/math/utils.cpp:82
tsid::math
Definition: constraint-base.hpp:26
BOOST_AUTO_TEST_CASE
BOOST_AUTO_TEST_CASE(test_pseudoinverse)
Definition: math_utils.cpp:27
tsid::math::Matrix
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > Matrix
Definition: math/fwd.hpp:36
test_Constraint.m
int m
Definition: test_Constraint.py:41
n
Vec3f n
isApprox
bool isApprox(const Box &s1, const Box &s2, const FCL_REAL tol)


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Thu Apr 3 2025 02:47:15