AxonToDendrite

Contents

AxonToDendrite#

class braintools.conn.AxonToDendrite(target_dendrites=None, **kwargs)#

Specialized connectivity from axon to dendritic compartments.

This represents the most common type of synaptic connection where axons form synapses on dendritic branches.

Examples

>>> import brainunit as u
>>> axon_dend = AxonToDendrite(
...     target_dendrites=[BASAL_DENDRITE, APICAL_DENDRITE],
...     connection_prob=0.1,
...     weight_distribution='lognormal',
...     weight_params={'mean': 2.0 * u.nS, 'sigma': 0.5}
... )