Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ねえ、これはすばやく簡単な質問です... 0を除いて、この行列の最小値をどのように見つけることができますか?のように、8
arr = numpy.array([[ 0., 56., 20., 44.], [ 68., 0., 56., 8.], [ 32., 56., 0., 44.], [ 68., 20., 56., 0.]])
あなたが使用しているnumpyので、あなたは使用することができます
numpy
arr[arr>0].min()
あなたが投稿した場合のために。ただし、配列に負の値が含まれる可能性がある場合は、
arr[arr != 0].min()