Mean of 2 arrays

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?

Answers (2)

John Doe
John Doe on 15 May 2013
Edited: John Doe on 15 May 2013
One way would be:
mean(mean([imag{1} imag{2}]))
If the dimensions don't match:
mean([imag{1}(:); imag{2}(:)])

Categories

Find more on Images in Help Center and File Exchange

Tags

Asked:

on 15 May 2013

Community Treasure Hunt

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

Start Hunting!