MCPcopy Index your code
hub / github.com/numpy/numpy / test_multinomial

Method test_multinomial

numpy/random/tests/test_generator_mt19937.py:2561–2565  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2559 self.check_function(gen_random, sz=(100, 1000))
2560
2561 def test_multinomial(self):
2562 def gen_random(state, out):
2563 out[...] = state.multinomial(10, [1 / 6.] * 6, size=10000)
2564
2565 self.check_function(gen_random, sz=(10000, 6))
2566
2567
2568# See Issue #4263

Callers

nothing calls this directly

Calls 1

check_functionMethod · 0.95

Tested by

no test coverage detected