How to calculate the average of a cell array?
조회 수: 59 (최근 30일)
이전 댓글 표시
Hi, I have a cell array like this -
T = {[10, 1, 30], [15, 2, 10], [20, 3, 20]}
I want to calculate the mean of T in a way that the result is a 1x3 double. And the result is,
T = [15, 2, 20]
It means the result should average the values of its position. (10+15+20)/3 = 15
Thank you!!
댓글 수: 0
채택된 답변
Voss
2023년 8월 7일
T = {[10, 1, 30], [15, 2, 10], [20, 3, 20]}
M = vertcat(T{:})
meanT = mean(M,1)
댓글 수: 0
추가 답변 (1개)
Les Beckham
2023년 8월 7일
T = {[10, 1, 30], [15, 2, 10], [20, 3, 20]}
A = vertcat(T{:}) % make an array from the elements of the cell array by stacking them
m = mean(A) % average the columns
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!