MCPcopy Create free account
hub / github.com/KDE/labplot / minimum

Method minimum

src/backend/worksheet/plots/cartesian/Histogram.cpp:302–311  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

300BASIC_SHARED_D_READER_IMPL(Histogram, double, rugOffset, rugOffset)
301
302double Histogram::minimum(const Dimension dim) const {
303 Q_D(const Histogram);
304 switch (dim) {
305 case Dimension::X:
306 return d->xMinimum();
307 case Dimension::Y:
308 return d->yMinimum();
309 }
310 return NAN;
311}
312
313double Histogram::maximum(const Dimension dim) const {
314 Q_D(const Histogram);

Callers 3

xMinimumMethod · 0.45
yMinimumMethod · 0.45
recalcMethod · 0.45

Calls 2

xMinimumMethod · 0.80
yMinimumMethod · 0.80

Tested by

no test coverage detected