I have one array with shape: (15,2)
. I also have another array with values: [0, 3, 5]
.
I want to create another column in the first array with values from the second array, where the first 5 rows has value 0, rows 6-10 has value 3, and the last 5 rows has value 5.
like so:
[0,
0,
0,
0,
0,
3,
3,
3,
3,
3,
5,
5,
5,
5,
5]
is there any numpy method that does that?
Thanks!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…