MCPcopy Index your code
hub / github.com/networkx/networkx / expovariate

Method expovariate

networkx/utils/misc.py:430–431  ·  view source on GitHub ↗
(self, scale)

Source from the content-addressed store, hash-verified

428
429 # exponential as expovariate with 1/argument,
430 def expovariate(self, scale):
431 return self._rng.exponential(1 / scale)
432
433 # pareto as paretovariate with argument,
434 def paretovariate(self, shape):

Calls

no outgoing calls