RosettaCodeData/Task/Remove-duplicate-elements/Octave/remove-duplicate-elements.octave

3 lines
68 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
input=[1 2 6 4 2 32 5 5 4 3 3 5 1 2 32 4 4];
output=unique(input);