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
>>> from braintools.init import LogNormal
>>> axon_dend = AxonToDendrite(
...     target_dendrites=[BASAL_DENDRITE, APICAL_DENDRITE],
...     connection_prob=0.1,
...     weight=LogNormal(mean=2.0 * u.nS, std=0.5 * u.nS)
... )