Back to Numerical Arrays (NumPy)
np.ix_
Construct an open mesh from multiple sequences.
Syntax
np.ix_(args)
Description
Construct an open mesh from multiple sequences. This function takes N 1-D sequences and returns N outputs with N dimensions each, such that the shape in the ith dimension is the length of the ith input.
Parameters
| Name | Description |
|---|---|
| args | - 1-D sequences (arrays or NDArrays) |
Returns
Promise<NDArray[]>