วิธีที่ดีที่สุดในกรณีของคุณคือเปลี่ยนเกณฑ์ทั้งสองเป็นเกณฑ์เดียว:
dists[abs(dists - r - dr/2.) <= dr/2.]
มันเพียง แต่จะสร้างอาร์เรย์แบบบูลและในความคิดของฉันคือง่ายต่อการอ่านเพราะมันบอกว่าเป็นdist
ภายในdr
หรือr
? (แม้ว่าฉันจะนิยามใหม่r
ให้เป็นศูนย์กลางของภูมิภาคที่คุณสนใจแทนจุดเริ่มต้นดังนั้นr = r + dr/2.
) แต่นั่นไม่ได้ตอบคำถามของคุณ
คำตอบสำหรับคำถามของคุณ:
คุณไม่จำเป็นจริง ๆwhere
ถ้าคุณแค่พยายามที่จะกรององค์ประกอบdists
ที่ไม่ตรงกับเกณฑ์ของคุณ:
dists[(dists >= r) & (dists <= r+dr)]
เพราะ&
จะทำให้คุณมีองค์ประกอบตามลำดับand
(จำเป็นต้องใส่วงเล็บ)
หรือถ้าคุณต้องการใช้where
ด้วยเหตุผลบางอย่างคุณสามารถทำได้:
dists[(np.where((dists >= r) & (dists <= r + dr)))]
ทำไม:
เหตุผลที่มันใช้ไม่ได้เพราะnp.where
คืนค่ารายการดัชนีไม่ใช่อาเรย์บูลีน คุณกำลังพยายามหาand
ตัวเลขสองรายการซึ่งแน่นอนว่าไม่มีTrue
/ False
ค่าที่คุณคาดหวัง ถ้าa
และb
มีทั้งTrue
ค่าแล้วผลตอบแทนa and b
b
ดังนั้นพูดอะไรบางอย่างเช่นเพียงแค่จะทำให้คุณ[0,1,2] and [2,3,4]
[2,3,4]
นี่คือการกระทำ:
In [230]: dists = np.arange(0,10,.5)
In [231]: r = 5
In [232]: dr = 1
In [233]: np.where(dists >= r)
Out[233]: (array([10, 11, 12, 13, 14, 15, 16, 17, 18, 19]),)
In [234]: np.where(dists <= r+dr)
Out[234]: (array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]),)
In [235]: np.where(dists >= r) and np.where(dists <= r+dr)
Out[235]: (array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]),)
สิ่งที่คุณคาดหวังว่าจะเปรียบเทียบเป็นเพียงตัวอย่างของบูลีน
In [236]: dists >= r
Out[236]:
array([False, False, False, False, False, False, False, False, False,
False, True, True, True, True, True, True, True, True,
True, True], dtype=bool)
In [237]: dists <= r + dr
Out[237]:
array([ True, True, True, True, True, True, True, True, True,
True, True, True, True, False, False, False, False, False,
False, False], dtype=bool)
In [238]: (dists >= r) & (dists <= r + dr)
Out[238]:
array([False, False, False, False, False, False, False, False, False,
False, True, True, True, False, False, False, False, False,
False, False], dtype=bool)
ตอนนี้คุณสามารถโทรหาnp.where
อาร์เรย์บูลีนที่รวมกัน:
In [239]: np.where((dists >= r) & (dists <= r + dr))
Out[239]: (array([10, 11, 12]),)
In [240]: dists[np.where((dists >= r) & (dists <= r + dr))]
Out[240]: array([ 5. , 5.5, 6. ])
หรือทำดัชนีอาร์เรย์เดิมด้วยอาร์เรย์บูลีนโดยใช้การทำดัชนีแฟนซี
In [241]: dists[(dists >= r) & (dists <= r + dr)]
Out[241]: array([ 5. , 5.5, 6. ])
()
รอบ(ar>3)
และ(ar>6)
?