var fDesc=new Array(); fDesc[0] = "ScopeIIR provides a comprehensive IIR filter design capability. It instantly designs high-order IIR filters based on the Butterworth, Chebyshev, or Elliptic analog prototypes. It can design lowpass, highpass, bandpass, and bandstop filters, with frequency and gain characteristics you specify. Analysis

ScopeIIR provides a sophisticated set of plots and displays that let you fully analyze the characteristics of your filter design, including:

Frequency Response Plots
-Magnitude
-Phase
-Unwrapped phase
-Group delay
-Phase delay
Time Response Plots
-Impulse response
-Step response
-Combined impulse and step response
Data Displays
-Biquad coefficients
-Direct Form coefficients
-Poles and zeros
-Design specifications
-Impulse response
-Step response
Pole-Zero Plot"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }