06-23-2013 07:45 PM
Hi,
I've got the 1D array of the DBL values.
How to quickly check all of they are unique?
06-23-2013 07:52 PM
Index through the array in a loop. Search that 1-D array for each element. If the item is unique, there should be exactly 1 of that element in there.
06-23-2013 08:02 PM
06-24-2013 04:24 AM - edited 06-24-2013 04:29 AM
What happens if you're comparing two NaN entries in a numeric array?
Edit - by which I mean to say that, as usual, altenbach has a pretty good example of this - have a read through the comments here