How to remove all the rows containing a substring from a table?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Chiara Scarpellini
le 10 Août 2021
Modifié(e) : Stephen23
le 11 Août 2021
I need to remove all the rows containing the substring Downstream from the table.
0 commentaires
Réponse acceptée
Wan Ji
le 11 Août 2021
Assume the table is named 'myTable'.
Then
p = arrayfun(@(i)strncmpi(myTable.beregnings{i}(end:-1:1),'maertsnwod',10),(1:1:size(myTable,1))','uniform',true);
newTable = myTable(~p,:);
Your newTable is therefore what you want!
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur MATLAB Report Generator dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!