Is it possible to vectorize this ?
1 回表示 (過去 30 日間)
古いコメントを表示
A matrix A(100x1000) a selective column defined in B(1x1000). The required processing is the mean of non zero elements of each column of A referenced by B. Without the use of loops.
Regards
0 件のコメント
採用された回答
Matt J
2021 年 4 月 26 日
編集済み: Matt J
2021 年 4 月 26 日
A(~A)=nan;
result=mean(A(:,B),1,'omitnan')
その他の回答 (1 件)
Jan
2021 年 4 月 26 日
AB = A(:, B);
result = sum(AB, 1) ./ sum(AB ~= 0, 1);
mean('omitnan') replaces the NaNs by zeros for the summation and calculates the number of non-NaNs by sum(~isnan(AB)). Therefore this code should be faster, because it avoids replacing zeros by NaNs and back to zeros again.
1 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!