This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / lib / _index_tricks_impl / CClass

class

numpy.lib._index_tricks_impl:CClass

source: build-install/usr/lib/python3.14/site-packages/numpy/lib/_index_tricks_impl.py :556

Signature

class   CClass ( )

Members

Summary

Translates slice objects to concatenation along the second axis.

Extended Summary

This is short-hand for np.r_['-1,2,0', index expression], which is useful because of its common occurrence. In particular, arrays will be stacked along their last axis after being upgraded to at least 2-D with 1's post-pended to the shape (column vectors made out of 1-D arrays).

Examples

import numpy as np
np.c_[np.array([1,2,3]), np.array([4,5,6])]
np.c_[np.array([[1,2,3]]), 0, 0, np.array([[4,5,6]])]

See also

column_stack

Stack 1-D arrays as columns into a 2-D array.

r_

For more detailed documentation.

Aliases

  • numpy.lib._index_tricks_impl.CClass