mean of columns in a cell

2 vues (au cours des 30 derniers jours)
Franziska Domeier
Franziska Domeier le 17 Jan 2020
Commenté : Adam Danz le 17 Jan 2020
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 commentaires
Adam Danz
Adam Danz le 17 Jan 2020
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 le 17 Jan 2020
sorry, I mean column

Connectez-vous pour commenter.

Réponse acceptée

Adam Danz
Adam Danz le 17 Jan 2020
Modifié(e) : Adam Danz le 17 Jan 2020
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 commentaires
Franziska Domeier
Franziska Domeier le 17 Jan 2020
thanks a lot, it works !!!
Adam Danz
Adam Danz le 17 Jan 2020
Glad I could help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by