cogpy.utils.reshape
Functions
|
Move the axes specified by src_axes axes of an array X to the last axes. |
|
|
|
Ravel the specified dimensions of an array. |
|
Reshape the specified axes of an array while preserving the column order. |
|
reshapes the array x, for example if x.shape = (3,6,9,0) roll_dim(x,-1).shape = (6,9,0,3) :param x: :type x: array (arbitrary dimensions) :param nroll: :type nroll: int |
|
Move the last num_axes axes of an array X to a new position specified by dst_axes. |