Generate a TransferFunction data record from numerator and denominator array
encapsulated function fromArrays import Modelica; import Modelica_LinearSystems2.TransferFunction; input Real n[:] "Coefficients of numerator polynomial"; input Real d[:] "Coefficients of denominator polynomial"; input String uName = "" "input name"; input String yName = "" "output name"; output TransferFunction tf(redeclare Real n[size(n, 1)], redeclare Real d[size(d, 1)]) "Transfer function"; end fromArrays;