mean of columns in a cell

조회 수: 1 (최근 30일)
Franziska Domeier
Franziska Domeier 2020년 1월 17일
댓글: Adam Danz 2020년 1월 17일
I have a cell, wich looks like
'S001' [] ' M' 29 '70' '180' '118' '70'
'S002' [] 'F' 25 '58' '166' '130' '90'
'S003' [] 'M' 34 '62' '167' '120' '78'
'S004' [] 'F' 28 '72' '160' '118' '78'
...
Now I would like to have the means of each row. I try
cellfun(@mean,cell_formatiert(3:14,k))
I get an answer, but it is wrong.
  댓글 수: 5
Adam Danz
Adam Danz 2020년 1월 17일
I'm confused. The title of the question states that you want the mean of columns. But then in your question, " I would like to have the means of each row". So, it is rows or columns?
Franziska Domeier
Franziska Domeier 2020년 1월 17일
sorry, I mean column

댓글을 달려면 로그인하십시오.

채택된 답변

Adam Danz
Adam Danz 2020년 1월 17일
편집: Adam Danz 2020년 1월 17일
Inputs:
  • cell_formatiert: your mxn cell array (presumably containing a mixture of numeric and character values, otherwise there is a much simpler answer).
  • rows : a vector of row numbers to include in the analysis
  • cols : a vector of column numbers to include in the analysis
cell_formatiert= {
'S001' [] 'M' 29 '70' '180' '118' '70'
'S002' [] 'F' 25 '58' '166' '130' '90'
'S003' [] 'M' 34 '62' '167' '120' '78'
'S004' [] 'F' 28 '72' '160' '118' '78'};
% Select the columns to average for each row
cols = 4:8;
% Select the rows that should be analyzed
rows = 1:4;
Here we convert any character arrays that are within the cols and rows selection to numeric
% identify elements of the selected columns that are character arrays
charIdx = cellfun(@ischar,cell_formatiert);
charIdx(:,~ismember(1:size(cell_formatiert,2),cols)) = false;
% Convert char arrays from chosen columns to numeric
cell_formatiert(charIdx) = num2cell(str2double(cell_formatiert(charIdx)));
If you want to comput the mean of each selected row, given the selected columns
% compute means per selected rows
mu = arrayfun(@(r)mean([cell_formatiert{r,cols}]),rows).';
mu is a vector of row-means, the same size as rows.
If you want to comput the mean of each selected column, given the selected rows
% compute means per selected columns
mu = arrayfun(@(c)mean([cell_formatiert{rows,c}]),cols);
mu is a vector of column-means, the same size as cols.
  댓글 수: 4
Franziska Domeier
Franziska Domeier 2020년 1월 17일
thanks a lot, it works !!!
Adam Danz
Adam Danz 2020년 1월 17일
Glad I could help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by