Construct transfer functions
tf1 = (s + 2) / (2*s2 + 3*s + 4)
and
tf2 = (s + 2) / (4*s2 + s + 4)
from numerator and denominator arrays and plot their Bode diagram with automatic determination of the frequency range to plot.
function plotBode2 extends Modelica.Icons.Function; import Modelica_LinearSystems2.TransferFunction; output Boolean ok; end plotBode2;