Source code for spynnaker8.utilities.random_stats.random_stats_gamma_impl

# Copyright (c) 2017-2019 The University of Manchester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from scipy.stats import gamma
from spynnaker.pyNN.utilities.random_stats import AbstractRandomStats


[docs]class RandomStatsGammaImpl(AbstractRandomStats): """ An implementation of AbstractRandomStats for gamma distributions """ def _get_params(self, dist): return [dist.parameters['k'], dist.parameters['theta']]
[docs] def cdf(self, dist, v): return gamma.cdf(v, *self._get_params(dist))
[docs] def ppf(self, dist, p): return gamma.ppf(p, *self._get_params(dist))
[docs] def mean(self, dist): return gamma.mean(*self._get_params(dist))
[docs] def std(self, dist): return gamma.std(*self._get_params(dist))
[docs] def var(self, dist): return gamma.var(*self._get_params(dist))
[docs] def high(self, dist): return None
[docs] def low(self, dist): return None