Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

0.4.3

Compare
Choose a tag to compare
@jpivarski jpivarski released this 22 Feb 16:09
· 131 commits to master since this release
7e6d08f

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, like numpy.histogramdd, unlike numpy.histogram2d:
bin_content, (xedges, yedges) = th2.numpy()

for consistency with

bin_content, (xedges, yedges, zedges) = th3.numpy()