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

Method minimum

src/backend/worksheet/plots/cartesian/QQPlot.cpp:202–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200}
201
202double QQPlot::minimum(const Dimension dim) const {
203 Q_D(const QQPlot);
204 switch (dim) {
205 case Dimension::X:
206 return d->referenceCurve->minimum(dim);
207 case Dimension::Y:
208 return std::min(d->referenceCurve->minimum(dim), d->percentilesCurve->minimum(dim));
209 }
210 return NAN;
211}
212
213double QQPlot::maximum(const Dimension dim) const {
214 Q_D(const QQPlot);

Callers 15

initStartValuesMethod · 0.45
recalculateSpecificMethod · 0.45
runMaximumLikelihoodMethod · 0.45
evaluateMethod · 0.45
recalculateSpecificMethod · 0.45
recalculateSpecificMethod · 0.45
retransformTicksMethod · 0.45
recalculateSpecificMethod · 0.45
recalculateSpecificMethod · 0.45
recalculateSpecificMethod · 0.45
recalculateSpecificMethod · 0.45
recalculateSpecificMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected