encapsulated function printTab2 import Modelica; import Modelica.Utilities.Strings; import Modelica_LinearSystems2; import Modelica.Utilities.Streams.print; import Modelica_LinearSystems2.Internal.Eigenvalue; input Eigenvalue evSorted[:]; input Integer evIndex[size(evSorted, 1)]; input Real r_evec[size(evSorted, 1), size(evSorted, 1)]; input Real l_evec[size(evSorted, 1), size(evSorted, 1)]; input Integer nReal; input String xNames2[size(evSorted, 1)]; input String fileName; input Modelica_LinearSystems2.Internal.AnalyseOptions analyseOptions = Modelica_LinearSystems2.Internal.AnalyseOptions(plotEigenValues = true, plotInvariantZeros = true, plotStepResponse = true, plotFrequencyResponse = true, printEigenValues = true, printEigenValueProperties = true, printInvariantZeros = true, printControllability = true, printObservability = true, headingEigenValues = "Eigenvalues", headingInvariantzeros = "Invariant zeros", headingStepResponse = "Step response", headingFrequencyResponse = "Frequency response"); end printTab2;