diff --git a/pynkowski/theory/gaussian.py b/pynkowski/theory/gaussian.py index 323142b..447d327 100644 --- a/pynkowski/theory/gaussian.py +++ b/pynkowski/theory/gaussian.py @@ -97,8 +97,7 @@ def MF(self, j, us): Expected value of MFs evaluated at the thresholds. """ - us /= self.sigma - return 1./comb(self.dim,j)*LKC(self.dim-j, us, self.mu, dim=self.dim, lkc_ambient=self.lkc_ambient)/self.lkc_ambient[-1] + return 1./comb(self.dim,j)*self.LKC(self.dim-j, us) def V0(self, us): """Compute the expected values of the first Minkowski Functionals of the excursion sets at thresholds `us`, $V_0(A_u(f))$. @@ -443,6 +442,7 @@ def maxima_dist(self, us): return np.real(np.sqrt(1./(1.-κ**2.+ 0.j))) * norm.pdf(us) * egoe(self.dim, 1./(1.-κ**2.), κ*us/np.sqrt(2.)) / egoe(self.dim, 1., 0.) + __all__ = ["SphericalGaussian", "EuclideanGaussian", "Gaussian"]