% Calculate the poles and the zeros of the gain using data type 'poles', simulation type 'numeric' and gain type 'gain'. % The latter two have already been defined correctly. dataType('poles'); % Define the data type for pole analysis gainPoles = execute(); % Calculate the poles htmlPage('Separate pole and zero analysis'); % Create an html page for displaying the results pz2html(gainPoles); % Display the results on the html page. dataType('zeros'); % Define the data type for zero analysis gainZeros = execute(); % Calculate the zeros pz2html(gainZeros); % Display the results on the html page.