Subtracting mean from table column and creating new Column with solution

1 回表示 (過去 30 日間)
Tarun bhalla
Tarun bhalla 2020 年 11 月 28 日
コメント済み: Tarun bhalla 2020 年 11 月 28 日
Hey guys,
I'm new to matlab and stuck:
I have 30x10 table and I'm trying to do the following:
I'm attempting to take the values from column 5 and subract them from the mean of column 10.
I've already calculated the mean but I'm struggling to figure out how i can calculate the value of each individual row and subract it from the mean and add it a new column row in one function.
Would that be possible?
Thanks guys

回答 (2 件)

Walter Roberson
Walter Roberson 2020 年 11 月 28 日
t.NewColumn = mean(t{:,10}) - t{:,5};

M.Many
M.Many 2020 年 11 月 28 日
%M = rand(30,10);
%T = array2table(M)
T{:,11}= mean(T{:,10})-T{:,5} % Replace T by your Table
  3 件のコメント
M.Many
M.Many 2020 年 11 月 28 日
True, thanks for the additional note.
Tarun bhalla
Tarun bhalla 2020 年 11 月 28 日
thanks for the help, it worked! thnakyou

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by