Home | Trees | Indices | Help |
|
---|
|
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
Perform Independent Component Analysis on input data using the FastICA algorithm by Aapo Hyvarinen. Observations of the same variable are stored on rows, different variables are stored on columns. This is a shortcut function for the corresponding node FastICANode. If any keyword arguments are specified, they are passed to its constructor. This is equivalent to mdp.nodes.FastICANode(**kwargs)(x) |
Compute eta values (a slowness measure) of the input data. The delta value of a signal is a measure of its temporal variation, and is defined as the mean of the derivative squared, i.e. delta(x) = mean(dx/dt(t)^2). delta(x) is zero if x is a constant signal, and increases if the temporal variation of the signal is larger. The eta value is a more intuitive measure of temporal variation, defined as eta(x) = T/(2*pi) * sqrt(delta(x)) If x is a signal of length T which consists of a sine function that accomplishes exactly N oscillations, then eta(x)=N. Input data are normalized to have unit variance, such that it is possible to compare the temporal variation of two signals independently from their scaling. Observations of the same variable are stored on rows, different variables are stored on columns. This is a shortcut function for the corresponding node EtaComputerNode. If any keyword arguments are specified, they are passed to its constructor. |
Filters multidimensioanl input data through its principal components. Observations of the same variable are stored on rows, different variables are stored on columns. This is a shortcut function for the corresponding node PCANode. If any keyword arguments are specified, they are passed to its constructor. This is equivalent to mdp.nodes.PCANode(**kwargs)(x) |
Perform Slow Feature Analysis on input data using the SFA algorithm by Laurenz Wiskott. Observations of the same variable are stored on rows, different variables are stored on columns. This is a shortcut function for the corresponding node SFANode. If any keyword arguments are specified, they are passed to its constructor. This is equivalent to mdp.nodes.SFANode(**kwargs)(x) |
Filters multidimensional input data through its principal components, rescaling the output signals such that they have unit variance. Observations of the same variable are stored on rows, different variables are stored on columns. This is a shortcut function for the corresponding node WhiteningNode. If any keyword arguments are specified, they are passed to its constructor. This is equivalent to mdp.nodes.WhiteningNode(**kwargs)(x) |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Oct 9 06:08:47 2009 | http://epydoc.sourceforge.net |