How to omit zeros while using mean at varfun?
6 ビュー (過去 30 日間)
古いコメントを表示
Hallo, Thanks for reading!
I want to know if this is posssible to omit zeros to calculate mean values using the following line of code?
varfun(@mean, data(indexrows,indexheaders), 'InputVariables', @isnumeric)
0 件のコメント
採用された回答
Walter Roberson
2021 年 6 月 10 日
編集済み: Walter Roberson
2021 年 6 月 10 日
varfun(@(x)sum(x,1)./sum(x~=0,1), data(indexrows,indexheaders), 'InputVariables', @isnumeric)
This has been designed to be able to handle column-by-column non-zero mean for cases where a table variable might be a 2D array instead of a column vector.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!