How to normalize a signal to zero mean and unit variance?

后端 未结 5 1078
鱼传尺愫
鱼传尺愫 2020-12-24 05:27

I am new to MATLAB and I am trying to built a voice morphing system using MATLAB.

So I would like to know how to normalize a signal to zero mean and unit variance us

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-24 05:42

    You can determine the mean of the signal, and just subtract that value from all the entries. That will give you a zero mean result.

    To get unit variance, determine the standard deviation of the signal, and divide all entries by that value.

提交回复
热议问题