Inherits from
- concatenator: numpy.lib.index_tricks.concatenator
Method summary
- __init__(self)
Inherited from base classes
- __getitem__(self, key)
- __getslice__(self, i, j)
- __len__(self)
Methods
- __init__(self)
Version 1.0b1 API Documentation generated by Endo 2006-08-14
Translates slice objects to concatenation along the second axis.
For example:
>>> c_[array([[1],[2],[3]]), array([[4],[5],[6]])]
array([[1, 4],
[2, 5],
[3, 6]])