Changeset 722 for trunk/src/space.py
- Timestamp:
- 03/03/10 10:53:42 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/space.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/space.py
r721 r722 63 63 if len(B.shape) == 1: 64 64 B = B.reshape(3, 1) 65 B = self.scale_factor*(B + self.offset) 65 # I'm not sure the following line should be here. Operations may be redundant and not very 66 # transparent from the user point of view. I moved it into the DistanceDependentProbability Connector 67 #B = self.scale_factor*(B + self.offset) 66 68 d = numpy.zeros((A.shape[1], B.shape[1]), dtype=A.dtype) 67 69 for axis in self.axes:
