How to shift a signal to left ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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...
0 comentarios
Respuestas (1)
Titus Edelhofer
el 5 de Abr. de 2011
Hi Negar,
circshift is your friend:
circshift(x1, [1 9])
Titus
2 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!