python
1import numpy as np
2from numpy.random import default_rng
3
4rg = default_rng()
5x = rg.integers(1000, 1500, 200).reshape((100, 1, 2))
6
7#
8y = x[x[:,:,1]>1300].reshape(-1, *x.shape[1:])
9print('shape =', y.shape)
10print('min =', y[:,:,1].min())
11print(y)
12
13#
14shape = (43, 1, 2)
15min = 1307
16[[[1234 1469]]
17
18 [[1359 1353]]
19
20 [[1246 1404]]
21
22 [[1241 1457]]
23
24 [[1401 1388]]
25
26 [[1451 1471]]
27 :
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/06 02:07