mirror of
https://github.com/boostorg/multi_array.git
synced 2026-01-24 18:12:20 +00:00
Initial submission to Boost.
[SVN r13915]
This commit is contained in:
38
example/print_array.cpp
Normal file
38
example/print_array.cpp
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
#include <iostream>
|
||||
#include "boost/multi_array.hpp"
|
||||
#include "boost/array.hpp"
|
||||
#include "boost/cstdlib.hpp"
|
||||
|
||||
template <typename Array>
|
||||
void print(std::ostream& os, const Array& A)
|
||||
{
|
||||
typename Array::const_iterator i;
|
||||
os << "[";
|
||||
for (i = A.begin(); i != A.end(); ++i) {
|
||||
print(os, *i);
|
||||
if (boost::next(i) != A.end())
|
||||
os << ',';
|
||||
}
|
||||
os << "]";
|
||||
}
|
||||
void print(std::ostream& os, const double& x)
|
||||
{
|
||||
os << x;
|
||||
}
|
||||
int main()
|
||||
{
|
||||
typedef boost::multi_array<double, 2> array;
|
||||
double values[] = {
|
||||
0, 1, 2,
|
||||
3, 4, 5
|
||||
};
|
||||
const int values_size=6;
|
||||
array A(boost::extents[2][3]);
|
||||
A.assign(values,values+values_size);
|
||||
print(std::cout, A);
|
||||
return boost::exit_success;
|
||||
}
|
||||
|
||||
// The output is:
|
||||
// [[0,1,2],[3,4,5]]
|
||||
Reference in New Issue
Block a user