MATLAB: Elliptical plot to Frequency response

ellipiirlowpassMATLABpoleszeros

The original question has been removed by the user.

Best Answer

Hi Tom, you don't want to input the zeros and poles to fvtool(), you want to import the filter numerator and denominator coefficients.
[b,a] = ellip(zp,pbrip,rejbndatt,1/2);
fvtool(b,a,'Fs',fs);