shape_base.pyi 726 B

123456789101112131415161718192021222324
  1. from typing import List
  2. from numpy.core.shape_base import vstack
  3. __all__: List[str]
  4. row_stack = vstack
  5. def take_along_axis(arr, indices, axis): ...
  6. def put_along_axis(arr, indices, values, axis): ...
  7. def apply_along_axis(func1d, axis, arr, *args, **kwargs): ...
  8. def apply_over_axes(func, a, axes): ...
  9. def expand_dims(a, axis): ...
  10. def column_stack(tup): ...
  11. def dstack(tup): ...
  12. def array_split(ary, indices_or_sections, axis=...): ...
  13. def split(ary, indices_or_sections, axis=...): ...
  14. def hsplit(ary, indices_or_sections): ...
  15. def vsplit(ary, indices_or_sections): ...
  16. def dsplit(ary, indices_or_sections): ...
  17. def get_array_prepare(*args): ...
  18. def get_array_wrap(*args): ...
  19. def kron(a, b): ...
  20. def tile(A, reps): ...