Delaying the input of a System

Say my input is a sine wave something like this :
Fs = 1000;
t = 0.001:1/Fs:1.005;
fm= 1;
u = sin(2*pi*fm*t)'
Now i need my input to start from 6th sample instead of 1st. u (1:5) =0; But when i run the code, my 6th sample is found to be u(6)= 0.0377 but i need my 6th sample to be 0.0063 which is u(1) before initialized to zero.
I mean i m not getting my sine wave to start at 6 th sample.. as the first 5 samples are not considered in my code (assigned to zero ).
Could any one help me with this ?

 Accepted Answer

Sai, use
u = sin(2*pi*fm*(t-t(6)))';
u(1:5) = 0;

1 Comment

Sai kasyap
Sai kasyap on 4 Apr 2014
Edited: Sai kasyap on 5 Apr 2014
Hey , if my input is randn instead of sine ! how to do it then ?

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Asked:

on 4 Apr 2014

Edited:

on 5 Apr 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!