You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.1 KiB

  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla
  7. // Public License v. 2.0. If a copy of the MPL was not distributed
  8. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. #define EIGEN2_SUPPORT
  10. #include "main.h"
  11. template<typename MatrixType> void eigen2support(const MatrixType& m)
  12. {
  13. typedef typename MatrixType::Index Index;
  14. typedef typename MatrixType::Scalar Scalar;
  15. Index rows = m.rows();
  16. Index cols = m.cols();
  17. MatrixType m1 = MatrixType::Random(rows, cols),
  18. m3(rows, cols);
  19. Scalar s1 = internal::random<Scalar>(),
  20. s2 = internal::random<Scalar>();
  21. // scalar addition
  22. VERIFY_IS_APPROX(m1.cwise() + s1, s1 + m1.cwise());
  23. VERIFY_IS_APPROX(m1.cwise() + s1, MatrixType::Constant(rows,cols,s1) + m1);
  24. VERIFY_IS_APPROX((m1*Scalar(2)).cwise() - s2, (m1+m1) - MatrixType::Constant(rows,cols,s2) );
  25. m3 = m1;
  26. m3.cwise() += s2;
  27. VERIFY_IS_APPROX(m3, m1.cwise() + s2);
  28. m3 = m1;
  29. m3.cwise() -= s1;
  30. VERIFY_IS_APPROX(m3, m1.cwise() - s1);
  31. VERIFY_IS_EQUAL((m1.corner(TopLeft,1,1)), (m1.block(0,0,1,1)));
  32. VERIFY_IS_EQUAL((m1.template corner<1,1>(TopLeft)), (m1.template block<1,1>(0,0)));
  33. VERIFY_IS_EQUAL((m1.col(0).start(1)), (m1.col(0).segment(0,1)));
  34. VERIFY_IS_EQUAL((m1.col(0).template start<1>()), (m1.col(0).segment(0,1)));
  35. VERIFY_IS_EQUAL((m1.col(0).end(1)), (m1.col(0).segment(rows-1,1)));
  36. VERIFY_IS_EQUAL((m1.col(0).template end<1>()), (m1.col(0).segment(rows-1,1)));
  37. using namespace internal;
  38. VERIFY_IS_EQUAL(ei_cos(s1), cos(s1));
  39. VERIFY_IS_EQUAL(ei_real(s1), real(s1));
  40. VERIFY_IS_EQUAL(ei_abs2(s1), abs2(s1));
  41. m1.minor(0,0);
  42. }
  43. void test_eigen2support()
  44. {
  45. for(int i = 0; i < g_repeat; i++) {
  46. CALL_SUBTEST_1( eigen2support(Matrix<double,1,1>()) );
  47. CALL_SUBTEST_2( eigen2support(MatrixXd(1,1)) );
  48. CALL_SUBTEST_4( eigen2support(Matrix3f()) );
  49. CALL_SUBTEST_5( eigen2support(Matrix4d()) );
  50. CALL_SUBTEST_2( eigen2support(MatrixXf(200,200)) );
  51. CALL_SUBTEST_6( eigen2support(MatrixXcd(100,100)) );
  52. }
  53. }