How to calculate the average columns values for a table in matlab ?

1 回表示 (過去 30 日間)
ahmed obaid
ahmed obaid 2017 年 3 月 31 日
コメント済み: ahmed obaid 2017 年 3 月 31 日
Dear Experiences
i have a data table include numeric values .. i need to calculate the average values of table columns and then eliminate columns their average less than certain values (such as 0.002) , then write new table to new excel file. i will thanks any one can give a help on this duty ..
attached my portion of data table (when its imported to matlab using read table function)

採用された回答

Andrei Bobrov
Andrei Bobrov 2017 年 3 月 31 日
編集済み: Andrei Bobrov 2017 年 3 月 31 日
EDIT
x = readtable('test.xls');
k = .002;
t = varfun(@isnumeric, x,'OutputFormat','uniform');
x1 = x(:,t);
out = [x(:,~t), x1(:,varfun(@mean, x1,'OutputFormat','uniform') > k)];
  2 件のコメント
Andrei Bobrov
Andrei Bobrov 2017 年 3 月 31 日
fixed
ahmed obaid
ahmed obaid 2017 年 3 月 31 日
thanks a lot,

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by