mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-12 05:31:51 +00:00
9 lines
207 B
C++
9 lines
207 B
C++
#include <boost/histogram.hpp>
|
|
|
|
using namespace boost::histogram;
|
|
int main() {
|
|
auto a = make_dynamic_histogram(axis::integer<>(0, 2));
|
|
auto b = make_dynamic_histogram(axis::integer<>(0, 3));
|
|
a += b;
|
|
}
|