What is the set of possible values that a may contain?
a
a = randi(10, [1, 10]); a(3) = 11; a(a>2) = 12;
3, 4, 5, 6, 7, 8, 9, 10, 11, 12
1, 2, 12
1, 12
2, 11, 12