Delete rows in cell aray where there is anything in one collum.

1 回表示 (過去 30 日間)
Karel Starý
Karel Starý 2021 年 8 月 2 日
コメント済み: Peter Perkins 2021 年 8 月 6 日
I have multiple cell arrays and I would like to delete whole rows based on one particular column, if there is anything (text or number) in this column.
Thanks!
  2 件のコメント
dpb
dpb 2021 年 8 月 2 日
Make it easier -- attach the sample array as .mat file and tell us which column...I presume the selected one, but yoou don't say so...
Karel Starý
Karel Starý 2021 年 8 月 3 日
Thanks for looking at my question!
You are right, it's the selected one. In this case the name of the variable is EventLTEEvents. Here you have my sample table:

サインインしてコメントする。

採用された回答

Peter Perkins
Peter Perkins 2021 年 8 月 3 日
A cell array is the wrong way to store these data. You want a table, or probably a timetable. The fact that you say, "the name of the variable is EventLTEEvents" makes me wonder if you already have that. And I recommend that you store text in those tables as string, not as cell arrays of char rows.
Once you have that, deleting rows based on a condition is just subscripting, e.g.
T(T.X > 10,:) = []
In your case, the condition is probably something like strlength(T.EventLTEEvents) > 0.
  4 件のコメント
Karel Starý
Karel Starý 2021 年 8 月 4 日
編集済み: Karel Starý 2021 年 8 月 4 日
I cannot stress enough how dumb I feel right now. I finally realized how you meant it. String length should definitely work for me. Thank you for your effort.
Peter Perkins
Peter Perkins 2021 年 8 月 6 日
glad to help. we all have our off days.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by