function printHTML extends Modelica.Icons.Function; import Modelica.Utilities.Files; import Modelica.Utilities.Streams; import Modelica.Utilities.Streams.print; input Complex c[:] "Complex vector to be printed"; input String heading = "Zeros" "Heading above the table"; input String name = "zeros" "Heading of value column"; input Boolean sort = true "= true, if values are sorted, otherwise no sorting"; input Boolean ascending = true "= true if ascending order, otherwise descending order for sorting"; input Boolean sortFrequency = true "= true, if sorting is first for imaginary then for real value, otherwise sorting is for absolute value"; end printHTML;