Mean of 2 arrays

28 vues (au cours des 30 derniers jours)
alex
alex le 15 Mai 2013
Hi, I have 2 arrays in a cell:
imag =
[1130x2120 double] [1130x2120 double]
How can i calculate the mean of both arrays together not of each one?

Réponses (2)

John Doe
John Doe le 15 Mai 2013
Modifié(e) : John Doe le 15 Mai 2013
One way would be:
mean(mean([imag{1} imag{2}]))
If the dimensions don't match:
mean([imag{1}(:); imag{2}(:)])

Azzi Abdelmalek
Azzi Abdelmalek le 15 Mai 2013
cellfun(@(x) mean(x(:)),imag)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center 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