Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how do you take the mean across columns but for singular row in a 960x31 array

1 回表示 (過去 30 日間)
Nadiyah Browning
Nadiyah Browning 2019 年 11 月 15 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
help!!
I have 960 rows in all the cells there are reaction times, then there are 31 columns, I cant remember how to do this
  1 件のコメント
Walter Roberson
Walter Roberson 2019 年 11 月 15 日
mean(YourArray(ColumnToSelect,:))
Or perhaps what you are looking for is
mean(YourArray, 2)
to give you 960 means of columns.

回答 (1 件)

Jyothis Gireesh
Jyothis Gireesh 2019 年 11 月 18 日
The following documentation link may help you to get a better understanding about how to perform averaging operation in MATLAB

Community Treasure Hunt

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

Start Hunting!

Translated by