Uses of Interface
mgui.models.dynamic.DynamicModelComponent
Package | Description |
---|---|
mgui.models.dynamic |
Provides a framework for dynamic modelling (4D) functionality in ModelGUI.
|
mgui.models.dynamic.ode | |
mgui.models.networks | |
mgui.models.networks.components | |
mgui.neuro.components | |
mgui.neuro.components.compartments | |
mgui.neuro.components.cortical | |
mgui.neuro.components.cortical.simple | |
mgui.neuro.components.simple | |
mgui.neuro.components.types | |
mgui.neuro.networks |
-
Uses of DynamicModelComponent in mgui.models.dynamic
Methods in mgui.models.dynamic that return types with arguments of type DynamicModelComponent Modifier and Type Method Description java.util.ArrayList<DynamicModelComponent>
DynamicModel. getComponents()
java.util.ArrayList<DynamicModelComponent>
DynamicModelComponent. getSubComponents()
Methods in mgui.models.dynamic with parameters of type DynamicModelComponent Modifier and Type Method Description void
DynamicModelEngine. addComponent(DynamicModelComponent c)
Addc
to this engine.void
DynamicModelComponent. addConnection(DynamicModelComponent c)
void
DynamicModelEngine. componentAdded(DynamicModelComponent c)
void
DynamicModelListener. componentAdded(DynamicModelComponent c)
void
DynamicModelEngine. componentRemoved(DynamicModelComponent c)
void
DynamicModelListener. componentRemoved(DynamicModelComponent c)
void
DynamicModelEngine. removeComponent(DynamicModelComponent c)
void
DynamicModelComponent. removeConnection(DynamicModelComponent c)
int
DynamicModelEngine. seek(DynamicModelComponent c)
Returns the index of component c. -
Uses of DynamicModelComponent in mgui.models.dynamic.ode
Subinterfaces of DynamicModelComponent in mgui.models.dynamic.ode Modifier and Type Interface Description interface
DynamicModelODEComponent
Interface for components which solve ordinary differential equations (ODEs). -
Uses of DynamicModelComponent in mgui.models.networks
Methods in mgui.models.networks that return types with arguments of type DynamicModelComponent Modifier and Type Method Description abstract java.util.ArrayList<DynamicModelComponent>
AbstractNetwork. getComponents()
Methods in mgui.models.networks with parameters of type DynamicModelComponent Modifier and Type Method Description protected void
AbstractNetworkModel. fireComponentAdded(DynamicModelComponent c)
protected void
AbstractNetworkModel. fireComponentRemoved(DynamicModelComponent c)
-
Uses of DynamicModelComponent in mgui.models.networks.components
Classes in mgui.models.networks.components that implement DynamicModelComponent Modifier and Type Class Description class
AbstractNetworkComponent
Abstract generic class for neuro model components to inherit. -
Uses of DynamicModelComponent in mgui.neuro.components
Subinterfaces of DynamicModelComponent in mgui.neuro.components Modifier and Type Interface Description interface
Axon
interface
Dendrite
interface
Dendrites
interface
MotorNeuron
interface
Neuron
interface
NeuronalComponent
interface
SensoryNeuron
interface
Soma
interface
Synapse
Classes in mgui.neuro.components that implement DynamicModelComponent Modifier and Type Class Description class
AbstractAxon
Default class for an axon.class
AbstractDendrite
class
AbstractDendrites
Default class for dendrites.class
AbstractMotorNeuron
Abstract class for a motor (output) neuron.class
AbstractNeuroComponent
Abstract generic class for neuro model components to inherit.class
AbstractNeuron
class
AbstractNeuronalComponent
Abstract class for all neuronal components (i.e., components of instances ofNeuron
) to inherit.class
AbstractSensoryNeuron
class
AbstractSoma
class
AbstractSynapse
class
CorticalRegion
Represents a component at the resolution of a cortical region.class
CorticalVolume
A Volume3D-based representation of a cortical region.Fields in mgui.neuro.components with type parameters of type DynamicModelComponent Modifier and Type Field Description protected java.util.ArrayList<DynamicModelComponent>
AbstractNeuroComponent. connections
Methods in mgui.neuro.components that return types with arguments of type DynamicModelComponent Modifier and Type Method Description java.util.ArrayList<DynamicModelComponent>
AbstractNeuroComponent. getConnections()
java.util.ArrayList<DynamicModelComponent>
AbstractAxon. getSubComponents()
java.util.ArrayList<DynamicModelComponent>
AbstractDendrite. getSubComponents()
java.util.ArrayList<DynamicModelComponent>
AbstractDendrites. getSubComponents()
java.util.ArrayList<DynamicModelComponent>
AbstractMotorNeuron. getSubComponents()
java.util.ArrayList<DynamicModelComponent>
AbstractNeuroComponent. getSubComponents()
Returns a list of the complete subcomponent tree.java.util.ArrayList<DynamicModelComponent>
AbstractNeuron. getSubComponents()
java.util.ArrayList<DynamicModelComponent>
AbstractSensoryNeuron. getSubComponents()
Methods in mgui.neuro.components with parameters of type DynamicModelComponent Modifier and Type Method Description void
AbstractNeuroComponent. addConnection(DynamicModelComponent c)
int
AbstractNeuroComponent. compareTo(DynamicModelComponent c)
void
AbstractNeuroComponent. removeConnection(DynamicModelComponent c)
-
Uses of DynamicModelComponent in mgui.neuro.components.compartments
Classes in mgui.neuro.components.compartments that implement DynamicModelComponent Modifier and Type Class Description class
AbstractCompartment
Basic compartment for compartmental model components.class
CompartmentalComponent
Base abstract class for all components using a compartmental model.class
CompartmentalDendrite
Represents a dendrite whose activity is determined by the cable model (see Rawl etc.) and a compartmental discrete (numerical) approximation of its differential functions.class
CompartmentalNeuron
class
CompartmentalSoma
class
NeuronalCompartmentalComponent
class
SimpleCompartment
-
Uses of DynamicModelComponent in mgui.neuro.components.cortical
Classes in mgui.neuro.components.cortical that implement DynamicModelComponent Modifier and Type Class Description class
AbstractCorticalConnection
Abstract class serving as a base for all cortical connections.class
AbstractCorticalInput
class
AbstractCorticalOutput
class
AbstractCorticalRegion
Represents a component at the resolution of a cortical region.class
CorticalVolume
A Volume3D-based representation of a cortical region. -
Uses of DynamicModelComponent in mgui.neuro.components.cortical.simple
Classes in mgui.neuro.components.cortical.simple that implement DynamicModelComponent Modifier and Type Class Description class
SimpleCorticalConnection
class
SimpleCorticalInput
class
SimpleCorticalOutput
class
SimpleCorticalRegion
Methods in mgui.neuro.components.cortical.simple that return types with arguments of type DynamicModelComponent Modifier and Type Method Description java.util.ArrayList<DynamicModelComponent>
SimpleCorticalRegion. getSubComponents()
-
Uses of DynamicModelComponent in mgui.neuro.components.simple
Classes in mgui.neuro.components.simple that implement DynamicModelComponent Modifier and Type Class Description class
SimpleAxon
class
SimpleDendrite
Simple dendrite, e.g., forSimpleNeuron
.class
SimpleDendrites
Basic input unit for, e.g.,SimpleNeuron
.class
SimpleMotorNeuron
Simple implementation of a motor (output) neuron.class
SimpleNeuron
Simple McCulloch-Pitts model of an artificial neuron.class
SimpleSensoryNeuron
A simple input (i.e., sensory) neuron.class
SimpleSoma
Simple soma for, e.g.,SimpleNeuron
.class
SimpleSynapse
Simple synapse for, e.g.,SimpleNeuron
-
Uses of DynamicModelComponent in mgui.neuro.components.types
Classes in mgui.neuro.components.types that implement DynamicModelComponent Modifier and Type Class Description class
ConnectableNeuron
-
Uses of DynamicModelComponent in mgui.neuro.networks
Methods in mgui.neuro.networks that return types with arguments of type DynamicModelComponent Modifier and Type Method Description java.util.ArrayList<DynamicModelComponent>
AbstractNeuralNet. getComponents()
java.util.ArrayList<DynamicModelComponent>
CorticalNetwork. getComponents()