Azzera filtri
Azzera filtri

Delete specific rows in table

5 visualizzazioni (ultimi 30 giorni)
Zeynab Mousavikhamene
Zeynab Mousavikhamene il 4 Ott 2019
Commentato: Daniel M il 4 Ott 2019
I want a table that has all values that their cell_type is 4 and get rid of those row that their cell_type is not 4.
Any suggestion?Capture.JPG

Risposta accettata

Daniel M
Daniel M il 4 Ott 2019
T(T.cell_type~=4,:) = [];
% where T is the name of your table
  1 Commento
Daniel M
Daniel M il 4 Ott 2019
If you want to keep the original table and make a new table only containing rows with cell_type 4, it is trivial.
T2 = T(T.cell_type==4,:);

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Tables in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by