subview2.cpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Copyright 2002 The Trustees of Indiana University.
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // Boost.MultiArray Library
  6. // Authors: Ronald Garcia
  7. // Jeremy Siek
  8. // Andrew Lumsdaine
  9. // See http://www.boost.org/libs/multi_array for documentation.
  10. #include "boost/multi_array.hpp"
  11. #include "boost/cstdlib.hpp"
  12. int
  13. main()
  14. {
  15. using boost::extents;
  16. using boost::indices;
  17. typedef boost::multi_array<int,3> array;
  18. int data[] = {
  19. 0,1,2,3,
  20. 4,5,6,7,
  21. 8,9,10,11,
  22. 12,13,14,15,
  23. 16,17,18,19,
  24. 20,21,22,23
  25. };
  26. const int data_size=24;
  27. array myarray(extents[2][3][4]);
  28. myarray.assign(data,data+data_size);
  29. //
  30. // array_view dims:
  31. // [base,stride,bound)
  32. // [0,1,2), [1,1,3), [0,2,4)
  33. //
  34. typedef boost::multi_array_types::index_range range;
  35. array::array_view<3>::type myview =
  36. myarray[indices[range(0,2)][range(1,3)][range(0,4,2)]];
  37. for (array::index i = 0; i != 2; ++i)
  38. for (array::index j = 0; j != 2; ++j)
  39. for (array::index k = 0; k != 2; ++k)
  40. assert(myview[i][j][k] == myarray[i][j+1][k*2]);
  41. return boost::exit_success;
  42. }