Switched to scipy.special.log1p@

This commit is contained in:
Mike Croucher 2015-09-07 16:34:53 +01:00
parent 54ea44b9f9
commit d3321251ef
2 changed files with 4 additions and 4 deletions

View file

@ -141,7 +141,7 @@ class Log_ex_1(GPTransformation):
"""
def transf(self,f):
return scipy.log1p(safe_exp(f))
return scipy.special.log1p(safe_exp(f))
def dtransf_df(self,f):
ef = safe_exp(f)