leony
Member level 1
zero forcing filter matlab
Hello,
I am new at equalizing and have a small question.
If I have a unequalized signal as 'h'
and let's say we have an equalizer with the transfer function:
y[k]=x[k]-0.5x[k-1]+3x[k-2]- 4x[k-3]+5x[k-4]- 6x[k-5] (just made up the values)
Since we know the weights (this is a zero forcing equalizer), is this correct to use the following code in Matlab?
y=[1 -0.5 3 -4 5 -6]
equalized=filter(y,h);
Why I am asking this, because I am working on a baseband simulation but things are not going well, I just want to be sure that I am on the right track.
Thanks...
Hello,
I am new at equalizing and have a small question.
If I have a unequalized signal as 'h'
and let's say we have an equalizer with the transfer function:
y[k]=x[k]-0.5x[k-1]+3x[k-2]- 4x[k-3]+5x[k-4]- 6x[k-5] (just made up the values)
Since we know the weights (this is a zero forcing equalizer), is this correct to use the following code in Matlab?
y=[1 -0.5 3 -4 5 -6]
equalized=filter(y,h);
Why I am asking this, because I am working on a baseband simulation but things are not going well, I just want to be sure that I am on the right track.
Thanks...