| 200 | } |
| 201 | |
| 202 | double 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 | |
| 213 | double QQPlot::maximum(const Dimension dim) const { |
| 214 | Q_D(const QQPlot); |
no outgoing calls
no test coverage detected