Skip to content
Snippets Groups Projects

Amend ChangeLog plus minor corrections along the way

Merged Gordian Edenhofer requested to merge nifty6_this_and_that_and_changelog into NIFTy_6
3 files
+ 18
4
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -61,7 +61,7 @@ def _lognormal_moments(mean, sig, N=0):
if not np.all(sig > 0):
raise ValueError("sig must be greater 0; got {!r}".format(sig))
logsig = np.sqrt(np.log((sig/mean)**2 + 1))
logsig = np.sqrt(np.log1p((sig/mean)**2))
logmean = np.log(mean) - logsig**2/2
return logmean, logsig
Loading