index(b);
This function returns an integer vector that contains indices to the true elements in a Boolean vector b. The number of elements in the integer vector is the number of true elements in b.
index({false, true, false, true})
returns {2,4}
.
allTrue, andTrue, anyTrue, countTrue, enumerate, firstTrueIndex, and oneTrue.
function index extends Modelica.Icons.Function; input Boolean b[:] "Boolean vector"; output Integer indices[countTrue(b)] "Indices of the true elements of b"; end index;