Borrar filtros
Borrar filtros

check 2 same numbers in a matrix

2 visualizaciones (últimos 30 días)
Pas182
Pas182 el 14 de Jun. de 2022
Comentada: Pas182 el 14 de Jun. de 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!

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 14 de Jun. de 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

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by