how can plot such a signal s(-t-5)?
2 次查看(过去 30 天)
显示 更早的评论
can anyone help me to make such a signal s(-t-5) from signal s? I have tried the following code: fliplr([zeros(1,5) s]) Is it right?
0 个评论
采纳的回答
Abhiram Bhanuprakash
2015-5-20
Hi sH,
I think your approach is right, and it accounts for the Y axis values.
But, for the X axis indices, I think you should do something like this:
Say you have a signal s(n) = [1 2 3 4], and you wish to obtain s1(n) = s(-n-5):
s = [1 2 3 4];
inds = 0:length(s)-1;
figure, plot(inds,s); %considering time index 0 as the origin
s1 = fliplr([zeros(1,5) a]);
flippedInds = -(length(s1)-1):0;
figure, plot(flippedInds,s1);
Hope this helps,
Cheers!
Abhiram.
3 个评论
Abhiram Bhanuprakash
2015-5-20
Oops, sorry, my mistake.
It should be
s1 = fliplr([zeros(1,5) s]);
Thanks Walter for pointing it out.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!