arkouda.array_api.indexing_functions ==================================== .. py:module:: arkouda.array_api.indexing_functions Functions --------- .. autoapisummary:: arkouda.array_api.indexing_functions.take Module Contents --------------- .. py:function:: take(x: arkouda.array_api.array_object.Array, indices: arkouda.array_api.array_object.Array, /, *, axis: Optional[int] = None) -> arkouda.array_api.array_object.Array Get the specified elements of an array along an axis. :param x: The array from which to take elements :type x: Array :param indices: A 1D integer array of indices to take from `x` :type indices: Array :param axis: The axis along which to take elements. If None, `x` must be 1D. :type axis: int, optional