Comparing two matrices for repeated values

1 view (last 30 days)
Hello
I have 2 matrices, both have one column and hundreds of rows. I have just found the repeated values in the first file by unique. As my question, I am trying to find repeated values more than 10 in the first file when the values in second file are equals to some number, lets say 5.
For example, when the second document gives 15, the number in the first file repeats 150 times. Is it possible?
Thank you
  3 Comments
madhan ravi
madhan ravi on 5 Feb 2019
Mr qqq definitely this behaviour is not encouraged.

Sign in to comment.

Accepted Answer

Matt J
Matt J on 5 Feb 2019
Edited: Matt J on 5 Feb 2019
u=unique(first(second==5));
u=u(u>10)

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!