Mean/average of a variable

3 vues (au cours des 30 derniers jours)
Auryn_
Auryn_ le 25 Jan 2019
Modifié(e) : Adam le 25 Jan 2019
Hello,
I have a variable P(a,b,c) where a=2, b=1:150,c=1:100.
Now, for each value of c, I want to calculate the mean of P:
M=mean(P(a,1:150,:))
where at the end I should have an array M(1,100).
Using what I showed above it does not work.
Coudl anyone help me?
Thanks in advance!

Réponse acceptée

Matt J
Matt J le 25 Jan 2019
Modifié(e) : Matt J le 25 Jan 2019
M=mean(P(a,1:150,:),2)

Plus de réponses (1)

Adam
Adam le 25 Jan 2019
Modifié(e) : Adam le 25 Jan 2019
M = mean( squeeze( P(a,:,:) )
should give what you want

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by