Whhat is the best way to remove repitions of two or three vectors?

2 views (last 30 days)
suppose I have a=[9 10 6 3 7],b=[1 9 6 7 8], I want to remove the repartitions so that:a=[9 10 6 3 7],b=[1 0 0 0 8]

Accepted Answer

Walter Roberson
Walter Roberson on 12 Apr 2014
b(ismember(b,a)) = 0;

More Answers (0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!