如果我有以下属性的正弦波
amplitude = 0.8
Sample Rate= 44100
Frequency = 440 Hz
Time = 2 sec
可以写成
x(t) = 0.8*sin(2*Pi*440*t/(44100*2)) //where t is the 't'th sample in 44100*2 samples.
我们如何在这个正弦波上产生镶边效果?我们可以添加相同波的相移波来产生效果吗?
如果我有以下属性的正弦波
amplitude = 0.8
Sample Rate= 44100
Frequency = 440 Hz
Time = 2 sec
可以写成
x(t) = 0.8*sin(2*Pi*440*t/(44100*2)) //where t is the 't'th sample in 44100*2 samples.
我们如何在这个正弦波上产生镶边效果?我们可以添加相同波的相移波来产生效果吗?
根据Wikipedia: Flanging,您可以这样做(以获得最纯粹的镶边版本):添加一个移位版本,即
y(t) = x(t) + x(t - N)
其中N
将被选择为小于或等于 20 ms 的偏移,因此对于 44.1 kHz 的采样频率,最多 882 个样本。