jax.numpy.vsplit
Warning
This page was created from a pull request (#9655).
jax.numpy.vsplit¶
- jax.numpy.vsplit(ary, indices_or_sections)¶
Split an array into multiple sub-arrays vertically (row-wise).
LAX-backend implementation of
vsplit().Original docstring below.
Please refer to the
splitdocumentation.vsplitis equivalent tosplitwith axis=0 (default), the array is always split along the first axis regardless of the array dimension.