Skip to content

Commit

Permalink
Continue debug
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmure committed Mar 26, 2024
1 parent 7cb8c31 commit fddc978
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/Uncertainty/Model/DistributionImplementation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -4566,9 +4566,10 @@ Graph DistributionImplementation::drawQuantile2D(const Scalar qMin,
const String title(OSS() << getDescription() << " Quantile");
const Sample data(computeQuantile(qMin, qMax, pointNumber));
LOGWARN(OSS() << "data = " << data);
LOGWARN(OSS() << "qMin =" << qMin << " ; qMax = " << qMax);
LOGWARN(OSS() << "qMin =" << qMin << " ; qMax-1 = " << qMax - 1.0);
LOGWARN(OSS() << "quantile(qMin) = " << computeQuantile(qMin));
LOGWARN(OSS() << "quantile(qMax) = " << computeQuantile(qMax));
LOGWARN(OSS() << "copula_quantile(qMax)[0]-1 = " << getCopula().computeQuantile(qMax)[0] - 1.0);
Curve curveQuantile(data);
curveQuantile.setLegend(title);
curveQuantile.setLineStyle("solid");
Expand Down

0 comments on commit fddc978

Please sign in to comment.