フィルターのクリア

Given a table, how can I delete rows not satisfying a certain property?

1 回表示 (過去 30 日間)
Emiliano Ascenzi
Emiliano Ascenzi 2020 年 1 月 24 日
回答済み: Bhaskar R 2020 年 1 月 24 日
Given a table, i want to build a new table keeping only rows where values of column 1 are 35<x<40 and values of column 2 are 20<y<22, other values doesn't interest me. Alternatively i want column vectors without not desiderate values

採用された回答

Bhaskar R
Bhaskar R 2020 年 1 月 24 日
Assuming t is your table variable and variable names are col_1 and col_2,
cond = (35>t.col_1 & t.col_1<40)&(20>t.col_2 & t.col_2<20); % your condition
new_t = t(cond, :) ; % your new table based on condition

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by