plot_rimp

Plotting of impulsionnal response of a FIR filter

Séquence d'appel

plot_rimp(h);
plot_rimp(t,h,opt);

Paramètres

h:

filter impulse vector (1d vector)

t:

optionnal abcisse vector

opt:

Optionnal parameters for the plot function (color / marker selections)

Description

This function is just a wrapper around native plot2d3 function, specialized for FIR coefficients display.

Exemple

h = hilb(33); // Get Hilbert FIR filter approximation (33 coefs.)
clf(); plot_rimp(h);