Identifying missing values in matrices

1 visualización (últimos 30 días)
Joel Schelander
Joel Schelander el 6 de Abr. de 2021
Respondida: David Fletcher el 6 de Abr. de 2021
I have two matrices. A=429x1 and B=412x1
Every number in the B matrix exists in A. However I want to find out which numbers are missing in B. Like
C=17x1

Respuesta aceptada

David Fletcher
David Fletcher el 6 de Abr. de 2021
try
idx=~ismember(B,A)
C=A(idx)

Más respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by