Boolean output is true if at least one matrix row is zero vector
function haveZeroRow extends Modelica.Icons.Function; input Real A[:, :] = fill(0, 0, 0) "input matrix"; output Boolean result "is true if A has at least one zero row"; end haveZeroRow;