check 2 same numbers in a matrix

3 views (last 30 days)
Pas182
Pas182 on 14 Jun 2022
Commented: Pas182 on 14 Jun 2022
Hello everyone! :)
in a matrix like:
NaDFIR_from_tool = [ 80 39 101 39 101 175 237 172 232 168 232 168 104 40 ]
how can i check that a number (in this case 39 and 168) is present 2 times?
Thank you so much!

Accepted Answer

Dyuman Joshi
Dyuman Joshi on 14 Jun 2022
y= [80 39 101 39 101 175 237 172 232 168 232 168 104 40]
y = 1×14
80 39 101 39 101 175 237 172 232 168 232 168 104 40
nnz(y==39)==2
ans = logical
1
nnz(y==168)==2
ans = logical
1

More Answers (0)

Categories

Find more on Multidimensional Arrays 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!