nectarchain.trr_verification_package.utils.pois#

pois(x, A, R)[source]#

Computes the expected distribution for a Poisson process with rate parameter R.

Parameters:
xfloat

The input value.

Afloat

The amplitude parameter.

Rfloat

The rate parameter.

Returns:
A * np.exp(x * R)float

The expected distribution for the Poisson process.