Skip to content

Commit dc183cd

Browse files
committed
Fix documentation
1 parent 7fd7fc8 commit dc183cd

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

neo/core/basesignal.py

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -300,31 +300,29 @@ def time_slice(self, t_start, t_stop):
300300
'''
301301
NotImplementedError('Needs to be implemented for subclasses.')
302302

303-
def concatenate(self, other):
303+
def concatenate(self, *signals):
304304
'''
305-
Patch another signal to this one.
305+
Concatenate multiple signals across time.
306306
307307
The signal objects are concatenated vertically
308-
(row-wise, :func:`np.vstack`). Patching can be
308+
(row-wise, :func:`np.vstack`). Concatenation can be
309309
used to combine signals across segments.
310-
Note: Only array annotations common to
310+
Note: Only (array) annotations common to
311311
both signals are attached to the concatenated signal.
312312
313-
If the attributes of the two signal are not
313+
If the attributes of the signals are not
314314
compatible, an Exception is raised.
315315
316-
Required attributes of the signal are used.
317-
318316
Parameters
319317
----------
320-
other : neo.BaseSignal
321-
The object that is merged into this one.
318+
signals : multiple neo.BaseSignal objects
319+
The objects that is concatenated with this one.
322320
323321
Returns
324322
-------
325323
signal : neo.BaseSignal
326324
Signal containing all non-overlapping samples of
327-
both source signals.
325+
the source signals.
328326
329327
Raises
330328
------

0 commit comments

Comments
 (0)