How to shift a signal to left ?
Show older comments
Hello all ,
I have a binary stochastic signal,
N=100; x1 = 2*(rand(1,N)>0.5)-1;
and I want to shift it to the left by 9 units.. how can I do that? Tried to find some hints in MATLAB HELP but couldn't find any useful commands,,
Thanks a lot...
Answers (1)
Titus Edelhofer
on 5 Apr 2011
Hi Negar,
circshift is your friend:
circshift(x1, [1 9])
Titus
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!