Hi,
 Are there equivalent functions to Matlab's nanmean and nanstd, i.e. 
functions for computing mean and standard deviation while ignoring NaN's? 
It's simple to put something together, of course, e.g.

function nanmean(x)
 mean(~isnan(x))
end

but it would nice to have as part of Base, or perhaps StatsBase? 

~ Roger

Reply via email to