Mean of 2 arrays

23 views (last 30 days)
alex
alex on 15 May 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?

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}(:)])

Azzi Abdelmalek
Azzi Abdelmalek on 15 May 2013
cellfun(@(x) mean(x(:)),imag)

Tags

Community Treasure Hunt

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

Start Hunting!