Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
how do you take the mean across columns but for singular row in a 960x31 array
조회 수: 2 (최근 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!