mx.nd.unravel.index

Description

Converts an array of flat indices into a batch of index arrays. The operator follows numpy conventions so a single multi index is given by a column of the output matrix. The leading dimension may be left unspecified by using -1 as placeholder.

Example:

A = [22,41,37]
unravel(A, shape=(7,6)) = [[3,6,6],[4,5,1]]
unravel(A, shape=(-1,6)) = [[3,6,6],[4,5,1]]

Arguments

Argument

Description

data

NDArray-or-Symbol.

Array of flat indices

shape

Shape(tuple), optional, default=None.

Shape of the array into which the multi-indices apply.