Back to Numerical Arrays (NumPy)
np.inner
Inner product of two arrays.
Syntax
np.inner(a, b)
Description
Inner product of two arrays. For 1-D arrays: dot product. For N-D arrays: sum product over last axes.
Parameters
| Name | Description |
|---|---|
| a | NDArray |
| b | NDArray |
Returns
Promise<NDArray>