fn_flip.cpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // Copyright 2015 Conrad Sanderson (http://conradsanderson.id.au)
  2. // Copyright 2015 National ICT Australia (NICTA)
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. // ------------------------------------------------------------------------
  15. #include <armadillo>
  16. #include "catch.hpp"
  17. using namespace arma;
  18. TEST_CASE("fn_flip_1")
  19. {
  20. mat A =
  21. "\
  22. 0.061198 0.201990 0.019678 -0.493936 -0.126745 0.051408;\
  23. 0.437242 0.058956 -0.149362 -0.045465 0.296153 0.035437;\
  24. -0.492474 -0.031309 0.314156 0.419733 0.068317 -0.454499;\
  25. 0.336352 0.411541 0.458476 -0.393139 -0.135040 0.373833;\
  26. 0.239585 -0.428913 -0.406953 -0.291020 -0.353768 0.258704;\
  27. ";
  28. mat A_fliplr =
  29. "\
  30. 0.051408 -0.126745 -0.493936 0.019678 0.201990 0.061198;\
  31. 0.035437 0.296153 -0.045465 -0.149362 0.058956 0.437242;\
  32. -0.454499 0.068317 0.419733 0.314156 -0.031309 -0.492474;\
  33. 0.373833 -0.135040 -0.393139 0.458476 0.411541 0.336352;\
  34. 0.258704 -0.353768 -0.291020 -0.406953 -0.428913 0.239585;\
  35. ";
  36. mat A_flipud =
  37. "\
  38. 0.239585 -0.428913 -0.406953 -0.291020 -0.353768 0.258704;\
  39. 0.336352 0.411541 0.458476 -0.393139 -0.135040 0.373833;\
  40. -0.492474 -0.031309 0.314156 0.419733 0.068317 -0.454499;\
  41. 0.437242 0.058956 -0.149362 -0.045465 0.296153 0.035437;\
  42. 0.061198 0.201990 0.019678 -0.493936 -0.126745 0.051408;\
  43. ";
  44. mat two_times_A_fliplr =
  45. "\
  46. 0.102816 -0.253490 -0.987872 0.039356 0.403980 0.122396;\
  47. 0.070874 0.592306 -0.090930 -0.298724 0.117912 0.874484;\
  48. -0.908998 0.136634 0.839466 0.628312 -0.062618 -0.984948;\
  49. 0.747666 -0.270080 -0.786278 0.916952 0.823082 0.672704;\
  50. 0.517408 -0.707536 -0.582040 -0.813906 -0.857826 0.479170;\
  51. ";
  52. mat two_times_A_flipud =
  53. "\
  54. 0.479170 -0.857826 -0.813906 -0.582040 -0.707536 0.517408;\
  55. 0.672704 0.823082 0.916952 -0.786278 -0.270080 0.747666;\
  56. -0.984948 -0.062618 0.628312 0.839466 0.136634 -0.908998;\
  57. 0.874484 0.117912 -0.298724 -0.090930 0.592306 0.070874;\
  58. 0.122396 0.403980 0.039356 -0.987872 -0.253490 0.102816;\
  59. ";
  60. REQUIRE( accu(abs( fliplr(A) - A_fliplr )) == Approx(0.0) );
  61. REQUIRE( accu(abs( flipud(A) - A_flipud )) == Approx(0.0) );
  62. REQUIRE( accu(abs( (-fliplr(A)) + A_fliplr )) == Approx(0.0) );
  63. REQUIRE( accu(abs( (-flipud(A)) + A_flipud )) == Approx(0.0) );
  64. REQUIRE( accu(abs( fliplr(-A) + A_fliplr )) == Approx(0.0) );
  65. REQUIRE( accu(abs( flipud(-A) + A_flipud )) == Approx(0.0) );
  66. REQUIRE( accu(abs( 2*fliplr(A) - two_times_A_fliplr )) == Approx(0.0) );
  67. REQUIRE( accu(abs( 2*flipud(A) - two_times_A_flipud )) == Approx(0.0) );
  68. REQUIRE( accu(abs( fliplr(2*A) - two_times_A_fliplr )) == Approx(0.0) );
  69. REQUIRE( accu(abs( flipud(2*A) - two_times_A_flipud )) == Approx(0.0) );
  70. // REQUIRE_THROWS( );
  71. }