How to ask matlab to find mean only if there are less than 3 NaN values?

1 次查看(过去 30 天)
How to ask matlab to find mean only if there are less than 2 NaN values in a given column, otherwise it should be NaN?
For Example,
qq = [1 2 3 NaN; 1 NaN NaN NaN];
qqm = mean(qq','omitnan');
qqm
% o/p is Value: [2,1], size: 1x2, Class: Double
I want to find output like:
qqm = [2, NaN]
Any help will be greatly appriciated.

采纳的回答

Bruno Luong
Bruno Luong 2022-8-5
qq = [1 2 3 NaN; 1 NaN NaN NaN];
qqm = mean(qq','omitnan');
qqm(sum(isnan(qq),2)>=2) = NaN;
qqm
qqm = 1×2
2 NaN

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by