functionarrayIntegerEqual

Check if two Integer vectors are equal

Extends from Modelica.Icons.Function (Icon for functions).

Information

Examples:
arrayIntegerEqual({1,2}, {1,2}) returns true, but arrayIntegerEqual({1,2}, {1,3}) and arrayIntegerEqual({1,2}, {1,2,3}) each return false.

Inputs

TypeNameDefaultDescription
Integer[:]u1First integer vector
Integer[:]u2Second integer vector

Outputs

TypeNameDefaultDescription
Booleanequal<html><code>true</code>, if all of the entries are equal</html>