標準偏差(std)の重みについて
4 次查看(过去 30 天)
显示 更早的评论
stdを使用する際に値が0である行列を数えないで正規化したいのですが、何か良い方法はありますか?
ご教授お願いいたします。
采纳的回答
Hernia Baby
2022-5-16
std のオプションにNaNを除外する機能がありますので、0をNaNにしましょう
まずはデータを用意します
A = randi([-5 5],9)
0をNaNにします
A(A==0) = nan()
NaNを除外して計算します
std(A,'omitnan')
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!