= dynamic connection matrix (5x5) = ''Description'': None == Setup code == {{{ #!python from brian import * s = arange(5) class thr(Threshold): def __call__(self, P): return s G = NeuronGroup(5, 'V:1', threshold=thr()) H = NeuronGroup(5, 'V:1') C = Connection(G, H, structure='dynamic' ) C.connect_full(G, H, weight=1) net = Network(G, H, C) net.prepare() net.run(defaultclock.dt) }}} == Benchmarked code == {{{ #!python net.run(1 * second) }}} == Benchmark results == [[Image(results.png, max-width:"100%")]]