Source code for spynnaker.pyNN.utilities.random_stats.abstract_random_stats

# Copyright (c) 2015 The University of Manchester
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Optional
from pyNN.random import RandomDistribution
from spinn_utilities.abstract_base import AbstractBase, abstractmethod


class AbstractRandomStats(object, metaclass=AbstractBase):
    """
    Statistics about PyNN `~spynnaker.pyNN.RandomDistribution` objects.
    """
    __slots__ = ()

[docs] @abstractmethod def cdf(self, dist: RandomDistribution, v: float) -> float: """ :returns: The cumulative distribution function value for the value `v`. """ raise NotImplementedError
[docs] @abstractmethod def ppf(self, dist: RandomDistribution, p: float) -> float: """ :returns: The percent point function value for the probability `p`. """ raise NotImplementedError
[docs] @abstractmethod def mean(self, dist: RandomDistribution) -> float: """ :returns: The mean of the distribution. """ raise NotImplementedError
[docs] @abstractmethod def std(self, dist: RandomDistribution) -> float: """ :returns: The standard deviation of the distribution. """ raise NotImplementedError
[docs] @abstractmethod def var(self, dist: RandomDistribution) -> float: """ :returns: The variance of the distribution. """ raise NotImplementedError
[docs] @abstractmethod def high(self, distribution: RandomDistribution) -> Optional[float]: """ :returns: The high cut-off value of the distribution, or `None` if the distribution is unbounded. """ raise NotImplementedError
[docs] @abstractmethod def low(self, distribution: RandomDistribution) -> Optional[float]: """ :returns: The low cut-off value of the distribution, or `None` if the distribution is unbounded. """ raise NotImplementedError