You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* `m` could be equal to `n`, but this need not be the case. Each
5911
5912
* range specification entry can be one of the following:
5912
5913
* <p>
5913
-
* - An ellipsis (...) using {@link Index#ellipses()}. Ellipses are used to imply zero or more
5914
+
* - An ellipsis (...) using {@link Indices#ellipsis()}. Ellipses are used to imply zero or more
5914
5915
* dimensions of full-dimension selection and are produced using
5915
5916
* `ellipsis_mask`. For example, `foo[...]` is the identity slice.
5916
5917
* <p>
5917
-
* - A new axis using {@link Index#newAxis()}. This is used to insert a new shape=1 dimension and is
5918
+
* - A new axis using {@link Indices#newAxis()}. This is used to insert a new shape=1 dimension and is
5918
5919
* produced using `new_axis_mask`. For example, `foo[:, ...]` where
5919
5920
* `foo` is shape `(3, 4)` produces a `(1, 3, 4)` tensor.
5920
5921
* <p>
5921
-
* - A range `begin:end:stride` using {@link Index#slice(Singular, Singular, int) Index.slice()} or {@link Index#all()}. This is used to specify how much to choose from
5922
+
* - A range `begin:end:stride` using {@link Indices#slice(Long, Long, long)} Index.slice()}. This is used to specify how much to choose from
5922
5923
* a given dimension. `stride` can be any integer but 0. `begin` is an integer
5923
5924
* which represents the index of the first value to select while `end` represents
5924
5925
* the index of the last value to select. The number of values selected in each
0 commit comments