1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-23 01:02:02 +01:00

Plot prediction bands without samples

This commit is contained in:
2019-04-26 16:33:38 +01:00
parent 070f91a4ed
commit b04338bf36
2 changed files with 44 additions and 10 deletions

View File

@ -139,11 +139,15 @@ class PlotPredBand: public PlotObject
{
public:
// constructor
PlotPredBand(const DVec &x, const DVec &y, const DVec &yerr,
const double opacity = 0.15);
PlotPredBand(const DoubleFunctionSample &function, const double xMin,
const double xMax, const unsigned int nPoint = 1000,
const double opacity = 0.15);
// destructor
virtual ~PlotPredBand(void) = default;
private:
void makePredBand(const DMat &low, const DMat &high, const double opacity);
};
class PlotHistogram: public PlotObject