edit finding mean

i used the code
out = [CLL_combinations(:,1:2,:) mean(CLL_combinations(:,3:end,:),2)]
i get output as
CLL_MEAN(:,:,1) =
83.0000 83.0000 0.6598
87.0000 87.0000 0.2103
;
;
;
CLL_MEAN(:,:,50) =
90.0000 90.0000 -0.1558
96.0000 96.0000 0.3872
i need only the third column to be displayed AS
CLL_MEANI=
0.6598
;
;
;
0.3872
PLEASE HELP

1 commentaire

Walter Roberson
Walter Roberson le 4 Fév 2012
See also the previous related question http://www.mathworks.com/matlabcentral/answers/27577-finding-mean

Connectez-vous pour commenter.

 Réponse acceptée

Walter Roberson
Walter Roberson le 4 Fév 2012

0 votes

CLL_MEANI = reshape(CLL_MEAN(:,end,:), [], 1);

Plus de réponses (0)

Catégories

En savoir plus sur Mathematics and Optimization dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by