Home | Trees | Indices | Help |
|
---|
|
1 #emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*- 2 #ex: set sts=4 ts=4 sw=4 et: 3 ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 4 # 5 # See COPYING file distributed along with the PyMVPA package for the 6 # copyright and license terms. 7 # 8 ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 9 10 __docformat__ = 'restructuredtext' 11 12 import numpy as N 13 14 from mvpa.measures.base import FeaturewiseDatasetMeasure 15 16 if __debug__: 17 from mvpa.base import debug 18 1945 4822 # init base classes first 23 FeaturewiseDatasetMeasure.__init__(self, **kwargs) 24 25 # save the args for the analysis 26 self.num_permutations = num_permutations 27 self.num_bootstraps = num_bootstraps2830 # take mean within condition and concat to make a condition by 31 # features matrix 32 33 # center each condition by subtracting the grand mean 34 35 # run SVD (checking to transpose if necessary) 36 pass37 40
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Apr 2 18:37:16 2009 | http://epydoc.sourceforge.net |