Back to Numerical Arrays (NumPy)
np.broadcastArrays
Broadcast any number of arrays against each other.
Syntax
np.broadcastArrays(arrays)
Description
Broadcast any number of arrays against each other. Returns views of the arrays with the same shape. All returned arrays share data with their originals.
Parameters
| Name | Description |
|---|---|
| arrays | - Arrays to broadcast together |
Returns
Promise<NDArray[]>