>For delay a simple matlab filter command will do.
>
>For example you had xin data which is set of random
>numbers
>
>>> xin = rand(1,100) % 100 random numbers
>>> h = [0 0 0 0 1 0 0 0 0] % 9 tap linear phase FIR filter
>>> xdel = filter(h, 1, xin) % xdel is 4 sample delayed version of
>xin
>
>Regards
>Bharat Pathak
>
>
>
yes, it's so simple! The only one non-zero sample represent an unitary
impulse which transform is a flat amplitude response and a linear phase
response. So i've a delay line.
i know that a simple delay line is the easiest way to add delay, but i use
a delay "filter" because i want to decompone it in its polyphase
components.
can i make another question? which is the difference between latence and
delay group? thank you


|