The operation of a prefix operator on an array produces an array of identical bounds. Each element of this array is the result of the operation performed on each element of the original array. For example:
If A is the array 5 3 -9
1 2 7
6 3 -4
then -A is the array -5 -3 9
-1 -2 -7
-6 -3 4