intersect between a double and a (complicated) cell array
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ioannis Vourvachakis
el 6 de Nov. de 2021
Comentada: Ioannis Vourvachakis
el 14 de Nov. de 2021
I have a double array A
and I have a cell array B
I want to extract the values in array A, that also are contained in the sixth column of array B.
Ηow this can be achieved?
3 comentarios
Respuesta aceptada
Walter Roberson
el 6 de Nov. de 2021
col6_numerics = cell2mat(vertcat(YourCell{:,6}));
A_that_appear = A(ismember(A, col6_numerics));
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and 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!