jax.numpy.stackΒΆ
-
jax.numpy.stack(arrays, axis=0, out=None)[source]ΒΆ Join a sequence of arrays along a new axis.
LAX-backend implementation of
stack().Original docstring below.
The
axisparameter specifies the index of the new axis in the dimensions of the result. For example, ifaxis=0it will be the first dimension and ifaxis=-1it will be the last dimension.New in version 1.10.0.