Changeset 416 for trunk/src/signals/spikes.py
- Timestamp:
- 08/06/09 11:41:31 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/signals/spikes.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/signals/spikes.py
r415 r416 1308 1308 xaxis = xaxis[:-1] 1309 1309 else: 1310 values, xaxis = numpy.histogram(isis, bins=bins, normed=True )1310 values, xaxis = numpy.histogram(isis, bins=bins, normed=True, new=True) 1311 1311 subplot = get_display(display) 1312 1312 if not subplot or not HAVE_PYLAB: … … 1403 1403 xaxis = xaxis[:-1] 1404 1404 else: 1405 values, xaxis = numpy.histogram(cvs, bins=bins, normed=True )1405 values, xaxis = numpy.histogram(cvs, bins=bins, normed=True, new=True) 1406 1406 subplot = get_display(display) 1407 1407 if not subplot or not HAVE_PYLAB:
