[Numpy-discussion] all elements equal
Neal Becker
ndbecker2@gmail....
Mon Mar 5 13:24:07 CST 2012
Keith Goodman wrote:
> On Mon, Mar 5, 2012 at 11:14 AM, Neal Becker <ndbecker2@gmail.com> wrote:
>> What is a simple, efficient way to determine if all elements in an array (in
>> my case, 1D) are equal? How about close?
>
> For the exactly equal case, how about:
>
> I[1] a = np.array([1,1,1,1])
> I[2] np.unique(a).size
> O[2] 1 # All equal
>
> I[3] a = np.array([1,1,1,2])
> I[4] np.unique(a).size
> O[4] 2 # All not equal
I considered this - just not sure if it's the most efficient
More information about the NumPy-Discussion
mailing list