The population namespace contains the creators and neurons_generators namespaces.
creators namespace
The creators namespace implements functions for generating neuron populations. The namespace provides the following functions:
from_container to generate a population of neurons of a certain type from a container containing the neuron attributes.make_random to generate a population of neurons of a certain type with random attribute values.make_default to generate a population of neurons of a certain type with default attribute values.make_clone to generate a population of neurons of a certain type whose attributes are copied from those of a given neuron.neurons_generators namespace
The neurons_generators namespace implements functions and interfaces for generating neurons. The namespace provides the following functions and interfaces:
from_container function to generate a population of neurons of a certain type from a container with neuron attributes.MakeRandom class to generate a population of neurons of a certain type with random attributes.make_default function to generate a population of neurons of a certain type with the default attributes.make_clone function to generate neurons of a certain type whose attributes are copied from those of a given neuron.