I imported data from a large excel file and now I want to delete the rows that have the values of column "dds" equal to 1 or 7. How can I proceed?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Eduardo Rocha
el 23 de Oct. de 2016
Comentada: Eduardo Rocha
el 23 de Oct. de 2016
I imported data from a large excel file and now I want to delete the rows that have the values of column "dds" equal to 1 or 7. How can I proceed?
0 comentarios
Respuesta aceptada
Walter Roberson
el 23 de Oct. de 2016
ddscol = 4; %set according to which column it is in
YourData( ismember(YourData(:,ddscol), [1, 7]), :) = []; %delete the rows where dds is 1 or 7
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import from MATLAB 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!