フィルターのクリア

How to delete variables in a table within a cell array

7 ビュー (過去 30 日間)
Isabelle Museck
Isabelle Museck 2024 年 6 月 3 日
回答済み: Torsten 2024 年 6 月 3 日
Hello there I have a 10x1 cell array with each cell containing a 540x3 table of values. I am looking to delete the first two colums of each table in the cell array so that there is a 10x1 cell array with each cell contaning a 540x1 table with only the last column. Is there an easy wasy to do this? Thank you so much.

採用された回答

Voss
Voss 2024 年 6 月 3 日
Here's one way:
C = cellfun(@(t)removevars(t,[1 2]),C,'UniformOutput',false);

その他の回答 (1 件)

Torsten
Torsten 2024 年 6 月 3 日
for i=1:10
c{i}(:,1:2) = [];
end

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by