CompoundPye
0.93
Modelling and Simulation Framework for Neural Networks of Arthropod Compound Eyes
|
Holds the basic Component class. More...
Classes | |
class | Component |
Basic component class. More... | |
class | Component2 |
Very similar to the class Component, but with 2 functions in the transfer from input to output. More... | |
Functions | |
def | identity |
Linear function that can be used as a Component's transfer function. More... | |
def | quadratic |
Quadratic function that can be used as a Component's transfer function. More... | |
def | power_law |
Power law that can be used as a Component's transfer function. More... | |
Holds the basic Component class.
def CompoundPye.src.Components.component.identity | ( | x, | |
gain = 1.0 |
|||
) |
Linear function that can be used as a Component's transfer function.
def CompoundPye.src.Components.component.power_law | ( | x, | |
a, | |||
b = 1 , |
|||
c = 0 |
|||
) |
Power law that can be used as a Component's transfer function.
def CompoundPye.src.Components.component.quadratic | ( | x, | |
a = 1 , |
|||
b = 0 |
|||
) |
Quadratic function that can be used as a Component's transfer function.