0
我有下面的類:如何使用數組中的np.where()與類的實例?
class IdFuns(object):
def __init__(self,i,p,v,u):
self.i = i
self.p = p
self.v = v
self.u = u
當我把一個循環我得到以下數組類的實例裏面:
array([
<__main__.IdFuns object at 0x7fc8362e8250>,
<__main__.IdFuns object at 0x7fc8362e8290>,
<__main__.IdFuns object at 0x7fc8362e82d0>,
<__main__.IdFuns object at 0x7fc8362e8310>,
<__main__.IdFuns object at 0x7fc8362e8350>,
<__main__.IdFuns object at 0x7fc8362e8390>,
<__main__.IdFuns object at 0x7fc8362e83d0>,
<__main__.IdFuns object at 0x7fc8362e8410>,
<__main__.IdFuns object at 0x7fc8362e8450>,
<__main__.IdFuns object at 0x7fc8362e8490>,
<__main__.IdFuns object at 0x7fc8362e84d0>,
<__main__.IdFuns object at 0x7fc8362e8510>,
<__main__.IdFuns object at 0x7fc8362e8550>], dtype=object)
我想知道我怎麼使用np.where ()來搜索我是否有例如.i = 1的實例。
謝謝!它會幫助我很多。 – dalmeida13