Check whether two linear systems have identical matrices
encapsulated operator function '==' import Modelica.Math.Matrices.isEqual; import StateSpace = Modelica_LinearSystems2.Internal.StateSpace2; input StateSpace ss1 "System 1"; input StateSpace ss2 "System 2"; input Real eps(min = 0) = 0 "Two elements e1 and e2 of the two systems are identical if abs(e1-e2) <= eps"; output Boolean same "=true, if the two systems are identical"; end '==';