upsampling and adding delay to a sequence
3 次查看(过去 30 天)
显示 更早的评论
Hi
I have a simple query.
Suppose i have a signal s = randn(1,10), if I want to add delay 100ms to this signal, what should i do?
I heard about upsampling the signal and then adding zeros, but can you help me with an example code
s = randn(1,8);
delay = 100ms;
s1 = upsample(s,?);
s_delay = [how many zeros, s1]?
Is that approach right?
0 个评论
采纳的回答
Walter Roberson
2012-1-19
It is not possible to add a delay to a signal unless you know what the sampling frequency is.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!