I need to check in an array all cells with a value under 9. I build an array with the indexes of those cells using find.
So I have for example array of values
A = [ 2, 10, 3 ]
and array of index
B = [ 1, 3 ]
then I need to set in a new C array the value of index 1 and 3 to 7. How can I do this without a loop?