s = Streams.stateSpaceString_html(ss, significantDigits, name);
Returns a string in the HTML format collecting matrices of a state space
representation ss
.
function stateSpaceString_html extends Modelica.Icons.Function; import Modelica_LinearSystems2.StateSpace; import Modelica.Utilities.Strings; input StateSpace ss "State space system to be transformed in a String representation"; input Integer significantDigits = 12 "Number of significant digits that are shown"; input String name = "ss" "Independent variable name used for printing"; output String s = ""; end stateSpaceString_html;