Remove specific cells in a cell array
36 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Khoder Makkawi
el 15 de Feb. de 2023
Comentada: Voss
el 16 de Feb. de 2023
I have a field_list that contains a large number of cells I will show a simple example :
fields_list = {'mode','time','date','Nav','state',...};
and I have another list for the fields I want to remove, for the same example:
remove_list = {'mode','date','Nav',,...};
is there a way to remove the 'remove_list' from the field_list' ?
Taking into account that the the fields_list and the remove_list are much bigger than this.
0 comentarios
Respuesta aceptada
Voss
el 15 de Feb. de 2023
fields_list = {'mode','time','date','Nav','state'};
remove_list = {'mode','date','Nav'};
fields_list(ismember(fields_list,remove_list)) = []
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Types 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!