hamonrye
Newbie level 1
- Joined
- May 19, 2013
- Messages
- 1
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,287
I am currently designing a Manchester matched filter design in Matlab. My task requires me to create and plot the impulse response h(t) of the optimum receiver filter matched to detect symbol '1'.
I have created a matched filter by using the following code:
h=fliplr(p);
where p is my manchester signal code for a symbol '1'.
p=[5*ones(1,Ns/2), -5*ones(1,Ns/2)];
How do you create an impulse response h(t)?
I have created a matched filter by using the following code:
h=fliplr(p);
where p is my manchester signal code for a symbol '1'.
p=[5*ones(1,Ns/2), -5*ones(1,Ns/2)];
How do you create an impulse response h(t)?