mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-11 21:24:14 +00:00
9 lines
212 B
C++
9 lines
212 B
C++
#include <boost/histogram.hpp>
|
|
#include <utility>
|
|
|
|
using namespace boost::histogram;
|
|
int main() {
|
|
auto h = make_dynamic_histogram(axis::integer<>(0, 2), axis::integer<>(0, 2));
|
|
h.at(std::make_pair(-2, 0));
|
|
}
|