Mirrors the C# Stratify.XValues(StratificationOptions, isLogarithmic): splits
[lower, upper] into bins equal-width strata (equal-width in log10 space when
logarithmic = TRUE), each carrying a weight defaulting to its own width. probability = TRUE always returns zero rows, matching Stratify.XValues's own early return for
probability-space options – the ported header exposes only the StratificationOptions
overload used by the BestFit estimators' profile-likelihood grids, not the
probability-stratification methods (Probabilities, XToProbability, ...), which are out of
scope (see stratify.hpp's file header).
Arguments
- lower, upper
bounds of the axis to stratify.
lowermust be less thanupper.- bins
number of bins, greater than 1.
- logarithmic
stratify on a log10 scale. Default
FALSE.- probability
mark the axis as a probability axis; kept only for parity with the C# constructor argument – it always yields zero bins (see Details). Default
FALSE.