result = DiscreteZerosAndPoles.Analysis.denominatorDegree(dzp)
Function Analysis.denominatorDegree calculates the degree of the denominator polynomial constituted by the first and second order polynomials of the DiscreteZeroAndPoles numerator.
DiscreteZerosAndPoles q = Modelica_LinearSystems2.DiscreteZerosAndPoles.q(); Modelica_LinearSystems2.DiscreteZerosAndPoles zp=(p+1)/(p^2+p+1); Real dDegree; algorithm dDegree := DiscreteZerosAndPoles.Analysis.denominatorDegree(dzp); // dDegree = 2
DiscreteZerosAndPoles.Analysis.numeratorDegree
encapsulated function denominatorDegree import Modelica; import Modelica_LinearSystems2.WorkInProgress.DiscreteZerosAndPoles; input DiscreteZerosAndPoles dzp "DiscreteZerosAndPoles transfer function of a system"; output Integer result; end denominatorDegree;