corners.cpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2006-2010 Benoit Jacob <jacob.benoit.1@gmail.com>
  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. #include "main.h"
  10. #define COMPARE_CORNER(A,B) \
  11. VERIFY_IS_EQUAL(matrix.A, matrix.B); \
  12. VERIFY_IS_EQUAL(const_matrix.A, const_matrix.B);
  13. template<typename MatrixType> void corners(const MatrixType& m)
  14. {
  15. Index rows = m.rows();
  16. Index cols = m.cols();
  17. Index r = internal::random<Index>(1,rows);
  18. Index c = internal::random<Index>(1,cols);
  19. MatrixType matrix = MatrixType::Random(rows,cols);
  20. const MatrixType const_matrix = MatrixType::Random(rows,cols);
  21. COMPARE_CORNER(topLeftCorner(r,c), block(0,0,r,c));
  22. COMPARE_CORNER(topRightCorner(r,c), block(0,cols-c,r,c));
  23. COMPARE_CORNER(bottomLeftCorner(r,c), block(rows-r,0,r,c));
  24. COMPARE_CORNER(bottomRightCorner(r,c), block(rows-r,cols-c,r,c));
  25. Index sr = internal::random<Index>(1,rows) - 1;
  26. Index nr = internal::random<Index>(1,rows-sr);
  27. Index sc = internal::random<Index>(1,cols) - 1;
  28. Index nc = internal::random<Index>(1,cols-sc);
  29. COMPARE_CORNER(topRows(r), block(0,0,r,cols));
  30. COMPARE_CORNER(middleRows(sr,nr), block(sr,0,nr,cols));
  31. COMPARE_CORNER(bottomRows(r), block(rows-r,0,r,cols));
  32. COMPARE_CORNER(leftCols(c), block(0,0,rows,c));
  33. COMPARE_CORNER(middleCols(sc,nc), block(0,sc,rows,nc));
  34. COMPARE_CORNER(rightCols(c), block(0,cols-c,rows,c));
  35. }
  36. template<typename MatrixType, int CRows, int CCols, int SRows, int SCols> void corners_fixedsize()
  37. {
  38. MatrixType matrix = MatrixType::Random();
  39. const MatrixType const_matrix = MatrixType::Random();
  40. enum {
  41. rows = MatrixType::RowsAtCompileTime,
  42. cols = MatrixType::ColsAtCompileTime,
  43. r = CRows,
  44. c = CCols,
  45. sr = SRows,
  46. sc = SCols
  47. };
  48. VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template block<r,c>(0,0)));
  49. VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template block<r,c>(0,cols-c)));
  50. VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template block<r,c>(rows-r,0)));
  51. VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template block<r,c>(rows-r,cols-c)));
  52. VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template topLeftCorner<r,Dynamic>(r,c)));
  53. VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<r,Dynamic>(r,c)));
  54. VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<r,Dynamic>(r,c)));
  55. VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<r,Dynamic>(r,c)));
  56. VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template topLeftCorner<Dynamic,c>(r,c)));
  57. VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<Dynamic,c>(r,c)));
  58. VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<Dynamic,c>(r,c)));
  59. VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<Dynamic,c>(r,c)));
  60. VERIFY_IS_EQUAL((matrix.template topRows<r>()), (matrix.template block<r,cols>(0,0)));
  61. VERIFY_IS_EQUAL((matrix.template middleRows<r>(sr)), (matrix.template block<r,cols>(sr,0)));
  62. VERIFY_IS_EQUAL((matrix.template bottomRows<r>()), (matrix.template block<r,cols>(rows-r,0)));
  63. VERIFY_IS_EQUAL((matrix.template leftCols<c>()), (matrix.template block<rows,c>(0,0)));
  64. VERIFY_IS_EQUAL((matrix.template middleCols<c>(sc)), (matrix.template block<rows,c>(0,sc)));
  65. VERIFY_IS_EQUAL((matrix.template rightCols<c>()), (matrix.template block<rows,c>(0,cols-c)));
  66. VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template block<r,c>(0,0)));
  67. VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template block<r,c>(0,cols-c)));
  68. VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,0)));
  69. VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,cols-c)));
  70. VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template topLeftCorner<r,Dynamic>(r,c)));
  71. VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorner<r,Dynamic>(r,c)));
  72. VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeftCorner<r,Dynamic>(r,c)));
  73. VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRightCorner<r,Dynamic>(r,c)));
  74. VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template topLeftCorner<Dynamic,c>(r,c)));
  75. VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorner<Dynamic,c>(r,c)));
  76. VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeftCorner<Dynamic,c>(r,c)));
  77. VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRightCorner<Dynamic,c>(r,c)));
  78. VERIFY_IS_EQUAL((const_matrix.template topRows<r>()), (const_matrix.template block<r,cols>(0,0)));
  79. VERIFY_IS_EQUAL((const_matrix.template middleRows<r>(sr)), (const_matrix.template block<r,cols>(sr,0)));
  80. VERIFY_IS_EQUAL((const_matrix.template bottomRows<r>()), (const_matrix.template block<r,cols>(rows-r,0)));
  81. VERIFY_IS_EQUAL((const_matrix.template leftCols<c>()), (const_matrix.template block<rows,c>(0,0)));
  82. VERIFY_IS_EQUAL((const_matrix.template middleCols<c>(sc)), (const_matrix.template block<rows,c>(0,sc)));
  83. VERIFY_IS_EQUAL((const_matrix.template rightCols<c>()), (const_matrix.template block<rows,c>(0,cols-c)));
  84. }
  85. void test_corners()
  86. {
  87. for(int i = 0; i < g_repeat; i++) {
  88. CALL_SUBTEST_1( corners(Matrix<float, 1, 1>()) );
  89. CALL_SUBTEST_2( corners(Matrix4d()) );
  90. CALL_SUBTEST_3( corners(Matrix<int,10,12>()) );
  91. CALL_SUBTEST_4( corners(MatrixXcf(5, 7)) );
  92. CALL_SUBTEST_5( corners(MatrixXf(21, 20)) );
  93. CALL_SUBTEST_1(( corners_fixedsize<Matrix<float, 1, 1>, 1, 1, 0, 0>() ));
  94. CALL_SUBTEST_2(( corners_fixedsize<Matrix4d,2,2,1,1>() ));
  95. CALL_SUBTEST_3(( corners_fixedsize<Matrix<int,10,12>,4,7,5,2>() ));
  96. }
  97. }