Mean of 2 arrays

30 次查看(过去 30 天)
alex
alex 2013-5-15
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?

回答(2 个)

John Doe
John Doe 2013-5-15
编辑:John Doe 2013-5-15
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 2013-5-15
cellfun(@(x) mean(x(:)),imag)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by