pyclustering
0.10.1
pyclustring is a Python, C++ data mining library.
|
Represents output dynamic of Sync in frequency domain. More...
Public Member Functions | |
def | __init__ (self, amplitude, time) |
Constructor of Sync dynamic in frequency domain. More... | |
def | output (self) |
(list) Returns output dynamic of the Sync network (amplitudes of each oscillator in the network) during simulation. | |
def | time (self) |
(list) Returns time-points corresponds to dynamic-points points. | |
def | __len__ (self) |
(uint) Returns number of simulation steps that are stored in dynamic. | |
def | __getitem__ (self, index) |
Indexing of the dynamic. | |
def | allocate_sync_ensembles (self, tolerance=0.1) |
Allocate clusters in line with ensembles of synchronous oscillators where each synchronous ensemble corresponds to only one cluster. More... | |
def | extract_number_oscillations (self, index, amplitude_threshold) |
Extracts number of oscillations of specified oscillator. More... | |
def pyclustering.nnet.fsync.fsync_dynamic.__init__ | ( | self, | |
amplitude, | |||
time | |||
) |
def pyclustering.nnet.fsync.fsync_dynamic.allocate_sync_ensembles | ( | self, | |
tolerance = 0.1 |
|||
) |
Allocate clusters in line with ensembles of synchronous oscillators where each synchronous ensemble corresponds to only one cluster.
[in] | tolerance | (double): Maximum error for allocation of synchronous ensemble oscillators. |
Definition at line 86 of file fsync.py.
Referenced by pyclustering.gcolor.hysteresis.hysteresis_analyser.allocate_clusters(), pyclustering.cluster.syncnet.syncnet_analyser.allocate_clusters(), and pyclustering.gcolor.sync.syncgcolor_analyser.allocate_color_clusters().
def pyclustering.nnet.fsync.fsync_dynamic.extract_number_oscillations | ( | self, | |
index, | |||
amplitude_threshold | |||
) |
Extracts number of oscillations of specified oscillator.
[in] | index | (uint): Index of oscillator whose dynamic is considered. |
[in] | amplitude_threshold | (double): Amplitude threshold when oscillation is taken into account, for example, when oscillator amplitude is greater than threshold then oscillation is incremented. |