getting the mean EXCEPT zero entries

3 visualizaciones (últimos 30 días)
cgo
cgo el 9 de Nov. de 2018
Comentada: madhan ravi el 9 de Nov. de 2018
I have a matrix, M = [zeros(10,10); 1 , 2 , 3 ,4 ,5,6,7,8,9,10];
I want to get the mean of each column, except the zero terms. How do I do this?

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 9 de Nov. de 2018
M=zeros(5);
M(randi(25,10,1))=1:10;
M(M==0)=nan;
mean(M,'omitnan')

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by