コード例 #1
0
ファイル: procrustean.py プロジェクト: schoeke/PyMVPA
 def __repr__(self):
     s = ProjectionMapper.__repr__(self).rstrip(' )')
     if not s[-1] == '(': s += ', '
     s += "scaling=%r, reflection=%r, reduction=%r, " \
          "oblique=%r, oblique_rcond=%r)" % \
          (self._scaling, self._reflection, self._reduction,
           self._oblique, self._oblique_rcond)
     return s