mirror of
https://github.com/boostorg/ublas.git
synced 2026-01-30 08:22:15 +00:00
11 lines
219 B
C++
11 lines
219 B
C++
#include <boost/numeric/ublas/storage.hpp>
|
|
|
|
int main () {
|
|
using namespace boost::numeric::ublas;
|
|
range r (0, 3);
|
|
for (unsigned i = 0; i < r.size (); ++ i) {
|
|
std::cout << r (i) << std::endl;
|
|
}
|
|
}
|
|
|