This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
0.4.3
Merged PR #42, which implements TH3.
It also introduces the following breaking changes in TH2:
xedges
,yedges
are swapped (to their correct order).numpy()
returns a nested structure, likenumpy.histogramdd
, unlikenumpy.histogram2d
:
bin_content, (xedges, yedges) = th2.numpy()
for consistency with
bin_content, (xedges, yedges, zedges) = th3.numpy()