-
broadcast.shape
-
Shape of broadcasted result.
Examples
12345>>> x
=
np.array([
1
,
2
,
3
])
>>> y
=
np.array([[
4
], [
5
], [
6
]])
>>> b
=
np.broadcast(x, y)
>>> b.shape
(
3
,
3
)
broadcast.shape

2025-01-10 15:47:30
broadcast.shape
Shape of broadcasted result.
1 2 3 4 5 | >>> x = np.array([ 1 , 2 , 3 ]) >>> y = np.array([[ 4 ], [ 5 ], [ 6 ]]) >>> b = np.broadcast(x, y) >>> b.shape ( 3 , 3 ) |
Designed by : w10schools
service@w10schools.com
Please login to continue.