spynnaker.pyNN.utilities.random_stats package

Submodules

spynnaker.pyNN.utilities.random_stats.abstract_random_stats module

class spynnaker.pyNN.utilities.random_stats.abstract_random_stats.AbstractRandomStats[source]

Bases: object

Statistics about PyNN RandomDistribution objects

cdf(dist, v)[source]

Return the cumulative distribution function value for the value v

high(dist)[source]

Return the high cutoff value of the distribution, or None if the distribution is unbounded

low(dist)[source]

Return the low cutoff value of the distribution, or None if the distribution is unbounded

mean(dist)[source]

Return the mean of the distribution

ppf(dist, p)[source]

Return the percent point function value for the probability p

std(dist)[source]

Return the standard deviation of the distribution

var(dist)[source]

Return the variance of the distribution

Module contents

class spynnaker.pyNN.utilities.random_stats.AbstractRandomStats[source]

Bases: object

Statistics about PyNN RandomDistribution objects

cdf(dist, v)[source]

Return the cumulative distribution function value for the value v

high(dist)[source]

Return the high cutoff value of the distribution, or None if the distribution is unbounded

low(dist)[source]

Return the low cutoff value of the distribution, or None if the distribution is unbounded

mean(dist)[source]

Return the mean of the distribution

ppf(dist, p)[source]

Return the percent point function value for the probability p

std(dist)[source]

Return the standard deviation of the distribution

var(dist)[source]

Return the variance of the distribution