Mean doesn't work
    4 views (last 30 days)
  
       Show older comments
    
Hi, I have doubt in mean. if we have more than 10000 rows why mean doesn't work actually sum also does not work. for example, All_measured = 43472*30 double and the mean formula: mean(All_measured ,2) but the answer is 43472*1 full of NaN Any suitable ideas are very appreciable.
0 Comments
Accepted Answer
  Star Strider
      
      
 on 6 Jul 2017
        Try this:
mean(All_measured ,2, 'omitnan')
or:
nanmean(All_measured ,2)
4 Comments
More Answers (0)
See Also
Categories
				Find more on Logical in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
