Problem 76. De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if
a = [5 3 6 4 7 7 3 5 9]
then
dedupe(a) = [5 3 6 4 7 9]
Solution Stats
Problem Comments
-
4 Comments
solved in one line !
nice problem
Hi, bainhome:
Cody is based on the 'current' version of MATLAB, not R2012b. Many functions are unchanged, but a few have changed (modified, new, or removed), including "unique".
You must add the 'legacy' flag to the list of arguments to preserve the behaviour of the "unique" function from R2012b and prior releases — refer to the documentation (link posted by Jakub Galecki).
—DIV
if u know a specific function its too easy.
Solution Comments
Show commentsProblem Recent Solvers3538
Suggested Problems
-
Flip the main diagonal of a matrix
848 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
12556 Solvers
-
Find out missing number from a vector of 9 elements
304 Solvers
-
329 Solvers
-
Solve a System of Linear Equations
13107 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!