Info
此问题已关闭。 请重新打开它进行编辑或回答。
how do you take the mean across columns but for singular row in a 960x31 array
1 次查看(过去 30 天)
显示 更早的评论
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
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
2019-11-18
The following documentation link may help you to get a better understanding about how to perform averaging operation in MATLAB
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!