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
5896
5897
* range specification entry can be one of the following:
5897
5898
* <p>
5898
-
* - An ellipsis (...) using {@link Index#ellipses()}. Ellipses are used to imply zero or more
5899
+
* - An ellipsis (...) using {@link Indices#ellipsis()}. Ellipses are used to imply zero or more
5899
5900
* dimensions of full-dimension selection and are produced using
5900
5901
* `ellipsis_mask`. For example, `foo[...]` is the identity slice.
5901
5902
* <p>
5902
-
* - A new axis using {@link Index#newAxis()}. This is used to insert a new shape=1 dimension and is
5903
+
* - A new axis using {@link Indices#newAxis()}. This is used to insert a new shape=1 dimension and is
5903
5904
* produced using `new_axis_mask`. For example, `foo[:, ...]` where
5904
5905
* `foo` is shape `(3, 4)` produces a `(1, 3, 4)` tensor.
5905
5906
* <p>
5906
-
* - 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
5907
+
* - A range `begin:end:stride` using {@link Indices#slice(Long, Long, long)} Index.slice()}. This is used to specify how much to choose from
5907
5908
* a given dimension. `stride` can be any integer but 0. `begin` is an integer
5908
5909
* which represents the index of the first value to select while `end` represents
5909
5910
* the index of the last value to select. The number of values selected in each
0 commit comments