Ongoing changes to symbolic.

This commit is contained in:
Neil Lawrence 2014-04-08 06:09:30 +01:00
parent 9b5a1edb23
commit 41ef7f4c72
8 changed files with 77 additions and 166 deletions

View file

@ -10,7 +10,7 @@ except ImportError:
import numpy as np
from kern import Kern
from scipy.special import gammaln, gamma, erf, erfc, erfcx, polygamma
from GPy.util.functions import normcdf, normcdfln, logistic, logisticln
from GPy.util.functions import normcdf, normcdfln, logistic, logisticln, differfln
from ...core.parameterization import Param
class Symbolic(Kern):
@ -39,6 +39,7 @@ class Symbolic(Kern):
'erf':erf, 'erfc':erfc,
'erfcx':erfcx,
'polygamma':polygamma,
'differfln':differfln,
'normcdf':normcdf,
'normcdfln':normcdfln,
'logistic':logistic,