Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template make_histogram

boost::histogram::make_histogram — Make histogram from iterable range and default storage.

Synopsis

// In header: <boost/histogram/make_histogram.hpp>


template<typename Iterable, 
         typename  = detail::requires_sequence_of_any_axis<Iterable> > 
  auto make_histogram(Iterable && iterable);

Description

Parameters:

iterable

Iterable range of axis objects.


PrevUpHomeNext