標準偏差(std)の重みについて
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
朋貴 熊田
el 15 de Mayo de 2022
Comentada: 朋貴 熊田
el 16 de Mayo de 2022
stdを使用する際に値が0である行列を数えないで正規化したいのですが、何か良い方法はありますか?
ご教授お願いいたします。
2 comentarios
Respuesta aceptada
Hernia Baby
el 16 de Mayo de 2022
std のオプションにNaNを除外する機能がありますので、0をNaNにしましょう
まずはデータを用意します
A = randi([-5 5],9)
0をNaNにします
A(A==0) = nan()
NaNを除外して計算します
std(A,'omitnan')
Más respuestas (0)
Ver también
Categorías
Más información sobre データの前処理 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!