(self)
| 26 | return np.exp(self.lnpdf(x)) |
| 27 | |
| 28 | def plot(self): |
| 29 | import sys |
| 30 | |
| 31 | assert "matplotlib" in sys.modules, "matplotlib package has not been imported." |
| 32 | from GPy.plotting.matplot_dep import priors_plots |
| 33 | |
| 34 | priors_plots.univariate_plot(self) |
| 35 | |
| 36 | def __repr__(self, *args, **kwargs): |
| 37 | return self.__str__() |
no outgoing calls