On Sun, Oct 30, 2016 at 10:05 PM, <misspero...@gmail.com> wrote: > Hi folks, > > I've noticed that in v5 the expression > > > unique([122 122.5 10 10.3]) > > > gives as result the following vector: > > 122 123 10 10.3 > > > Any device? Is there any maximum number of characters displayed in the > console, or something similar?
I'm not sure how Atom display works but maybe you can try `dump(unique([122 122.5 10 10.3]))`. Also what if you just print `[122 122.5 10 10.3]` since the unique is supposed to be no op here? > > thanks,