I am trying to increase certain elements by 1 in order to record the results as they become available. I am trying to read an element, add 1 to it, and then write it back to the same memory address. Why is it not so simple?
In code, it would be so simple:
array1[element1] = (array1[element1]+1)
or
array1[element1]++
Do arrays seem to be either read (indicators) or a record (controls)? This is really disappointing, and there is very little help on the Internet.
source share