calix.hagen.neuron_synin_coba

Provides calibration classes for conductance-based (COBA) synaptic input parameters.

Classes

COBABiasCalib(e_coba_reference, …)

Calibration for the COBA synaptic input modulation strength.

COBAReferenceCalib(n_events, …)

Calibrates the COBA reference potential.

ExcCOBABiasCalib(e_coba_reference, …)

ExcCOBAReferenceCalib(n_events, …)

InhCOBABiasCalib(e_coba_reference, …)

InhCOBAReferenceCalib(n_events, …)

Functions

calix.hagen.neuron_synin_coba.abstractmethod(funcobj)

A decorator indicating abstract methods.

Requires that the metaclass is ABCMeta or derived from it. A class that has a metaclass derived from ABCMeta cannot be instantiated unless all of its abstract methods are overridden. The abstract methods can be called using any of the normal ‘super’ call mechanisms. abstractmethod() may be used to declare abstract methods for properties and descriptors.

Usage:

class C(metaclass=ABCMeta):

@abstractmethod def my_abstract_method(self, …):