pub fn merged_log_prob_rees<Extra, Ensemble, R, Hist, Energy, S, Res>(
    rees: &[Rees<Extra, Ensemble, R, Hist, Energy, S, Res>]
) -> Result<(Vec<f64>, Hist), HistErrors>
where Hist: Histogram + HistogramVal<Energy> + HistogramCombine + Send + Sync, Energy: PartialOrd,
Expand description

Merge probability density of multiple rees simulations

  • Will calculate the merged log (base e) probability density. Also returns the corresponding histogram.
  • rees does not need to be sorted in any way

Errors

  • will return HistErrors::EmptySlice if the rees slice is empty
  • will return other HistErrors if the intervals have no overlap