আইএমও ওপি আসলে np.bitwise_and()
(ওরফে &
) চায় না তবে প্রকৃতপক্ষে চায় np.logical_and()
কারণ তারা লজিক্যাল মানগুলির তুলনা করছে যেমন True
এবং False
- পার্থক্যটি দেখতে লজিক্যাল বনাম বিটওয়াসে এই এসও পোস্টটি দেখুন।
>>> x = array([5, 2, 3, 1, 4, 5])
>>> y = array(['f','o','o','b','a','r'])
>>> output = y[np.logical_and(x > 1, x < 5)] # desired output is ['o','o','a']
>>> output
array(['o', 'o', 'a'],
dtype='|S1')
এবং এটি করার সমতুল্য উপায়টি যুক্তিটি যথাযথভাবে np.all()
সেট করা সহ axis
।
>>> output = y[np.all([x > 1, x < 5], axis=0)] # desired output is ['o','o','a']
>>> output
array(['o', 'o', 'a'],
dtype='|S1')
সংখ্যা দ্বারা:
>>> %timeit (a < b) & (b < c)
The slowest run took 32.97 times longer than the fastest. This could mean that an intermediate result is being cached.
100000 loops, best of 3: 1.15 µs per loop
>>> %timeit np.logical_and(a < b, b < c)
The slowest run took 32.59 times longer than the fastest. This could mean that an intermediate result is being cached.
1000000 loops, best of 3: 1.17 µs per loop
>>> %timeit np.all([a < b, b < c], 0)
The slowest run took 67.47 times longer than the fastest. This could mean that an intermediate result is being cached.
100000 loops, best of 3: 5.06 µs per loop
সুতরাং ব্যবহার np.all()
করা ধীর, &
এবং logical_and
প্রায় একই।