Filter löschen
Filter löschen

check 2 same numbers in a matrix

2 Ansichten (letzte 30 Tage)
Pas182
Pas182 am 14 Jun. 2022
Kommentiert: Pas182 am 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!

Akzeptierte Antwort

Dyuman Joshi
Dyuman Joshi am 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

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by