- #1
jisbon
- 476
- 30
- Homework Statement
- Given that x[n] = [5 1 7 9 4 3], where 5 is x[0].
Find x[n-1] , 2x[n-1] and -2x[n-1]+3
- Relevant Equations
- -
Attempting this question without any guidance from my professors unfortunately as they did not teach this bit. Searched online and also there aren't many questions like this.
From what I know,
(I) Having n-1 means you should shift right by 1, which means x[0] is now equals to 0? So x[n-1] = [0 5 1 7 9 4 3]?
ii) 2x[n-1] is simply a magnitude scaling of part one, so is it simply just 2x[n-1] = [0 10 2 14 18 8 6]?
(iii) -2x[n-1]+3. Is this simply again a magnitude scaling by -2 of part 1? Not sure how to do the +3 function though. Any help will be appreciated here :)
From what I know,
(I) Having n-1 means you should shift right by 1, which means x[0] is now equals to 0? So x[n-1] = [0 5 1 7 9 4 3]?
ii) 2x[n-1] is simply a magnitude scaling of part one, so is it simply just 2x[n-1] = [0 10 2 14 18 8 6]?
(iii) -2x[n-1]+3. Is this simply again a magnitude scaling by -2 of part 1? Not sure how to do the +3 function though. Any help will be appreciated here :)