How to mean all array?
3 views (last 30 days)
Show older comments
Hi, im using matlab r2018a
lets say i have array
A = [NaN 1 1; 2 NaN 2; 1 NaN 2; 4 2 2]
how to get mean of all of it?
i need the result is 1.888889
i try using
z = mean(A(:))
but the answer is
z = NaN
0 Comments
Accepted Answer
More Answers (1)
Walter Roberson
on 16 Jun 2021
format long g
A = [NaN 1 1; 2 NaN 2; 1 NaN 2; 4 2 2]
mean(A, 'all', 'omitnan')
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!