bellini.distributions.Uniform

class bellini.distributions.Uniform(low, high, **kwargs)[source]

Bases: bellini.distributions.SimpleDistribution

Uniform distribution.

__init__(low, high, **kwargs)[source]
Parameters
  • low (Distribution or Quantity) – low parameter of Uniform (see numpyro.distributions.Uniform)

  • high (Distribution or Quantity) – high parameter of Uniform (see numpyro.distributions.Uniform)

Methods

__init__(low, high, **kwargs)

Parameters
  • low (Distribution or Quantity) -- low parameter of Uniform (see numpyro.distributions.Uniform)

to_units(new_units[, force])

Return self converted to units new_units

unitless()

Return a unitless version of self

Attributes

dimensionality

The Distribution's dimensionality (e.g.

g

A networkx graph describing the computation graph used to create this Distribution

internal_units

The units associated with internal computations in Bellini for this Distribution

magnitude

A quantity (array-like or scalar) with the same shape as expected samples from this Distribution

name

A string representing the name of self

shape

The shape of samples from this Distribution

units

The units of this Distribution (e.g.

property dimensionality

The Distribution’s dimensionality (e.g. ‘length’ for meter)

property g

A networkx graph describing the computation graph used to create this Distribution

property internal_units

The units associated with internal computations in Bellini for this Distribution

property magnitude

A quantity (array-like or scalar) with the same shape as expected samples from this Distribution

property name

A string representing the name of self

property shape

The shape of samples from this Distribution

to_units(new_units, force=False)[source]

Return self converted to units new_units

unitless()[source]

Return a unitless version of self

property units

The units of this Distribution (e.g. molar)