return p(new NormalDistributionImpl(mean, sd), q, lowerTail, logP);
}
@DataParallel @Internal
public static double plnorm(@Recycle double q, @Recycle double logmean, @Recycle double logsd, boolean lowerTail, boolean logP) {
return p(new NormalDistributionImpl(logmean, logsd), Math.log(q), lowerTail, logP);
}