Load projection into motif
load.projection.into.motif.RdThis function loads a projection schema into a motif object. Projections define internode connectivity within a network built using the motif.
Usage
load.projection.into.motif(
motif,
presynaptic_layer,
postsynaptic_layer,
projection_conductance = 1e-10,
presynaptic_type = "principal",
postsynaptic_type = "principal",
max_col_shift_up = 0,
max_col_shift_down = 0
)Arguments
- motif
Motif object into which to load the projection.
- presynaptic_layer
Character string giving layer of presynaptic neuron, e.g. "L1", "L2", "L3", "L4", etc.
- postsynaptic_layer
Character string, or vector of character strings, giving layer of postsynaptic neuron.
- projection_conductance
Numeric giving overall strength of the projection, as synaptic conductance in units of millisiemens (default: 1e-10).
- presynaptic_type
Character string giving type of presynaptic neuron, e.g. "excitatory", "inhibitory", etc. (default: "principal").
- postsynaptic_type
Character string giving type of postsynaptic neuron, e.g. "excitatory", "inhibitory", etc. (default: "principal").
- max_col_shift_up
Maximum number of columns upwards (increasing columnar indexes) that the projection can reach (default: 0, should be positive integer).
- max_col_shift_down
Maximum number of columns downwards (decreasing columnar indexes) that the projection can reach (default: 0, should be positive integer).