Searched refs:inv_cond (Results 1 – 2 of 2) sorted by relevance
6 float inv_cond(const Ref<const MatrixXf>& a) in inv_cond() function16 cout << "inv_cond(m): " << inv_cond(m) << endl; in main()17 cout << "inv_cond(m(1:3,1:3)): " << inv_cond(m.topLeftCorner(3,3)) << endl; in main()18 cout << "inv_cond(m+I): " << inv_cond(m+Matrix4f::Identity()) << endl; in main()
92 In the first two calls to inv_cond, no copy occur because the memory layout of the arguments matche…