Back to Numerical Arrays (NumPy)
np.outer
Compute the outer product of two vectors.
Syntax
np.outer(a, b)
Description
Compute the outer product of two vectors.
Parameters
| Name | Description |
|---|---|
| a | NDArray |
| b | NDArray |
Returns
Promise<NDArray>