Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

time shifting of Discrete Signals

Status
Not open for further replies.

pathmakerpk

Newbie level 4
Joined
Feb 26, 2011
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,326
I have the following matrix

x=[2 3 5 4 6 4];
with index at 5 i-e n=0 at value 5.
n is sampling scale value (-----,3,-2,-1,0,1,2,3----)
I have to plot this signal x(n) on time axis n,
then I have to do the following operations,
x[-n],
x[-n+4]
x[-n-4]
x[n-4]
x[n].u[n-2]
x[n].impulse[n+2]
x[n].impulse[n-2]
 

I think x[-n] = [4 6 4 5 3 2] with 5 an index of 0.
For x[-n+4], first do shifting and then scaling.
So x[-n+4]= x[-(n-4)].
and x[n-4] = [2 3 5 4 6 4]; with 5 an index of 4.
and x[-n+4] = [4 6 4 5 3 2] with 5 an index of -4.

Calculate others also in the same way. Refer Page 9 of this link for more information.
3 Discrete Time Signal Operations
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top