No that is not possible. Those values were output to the screen and now are gone.
You need to change your code to either save all of the versions of your array to take the maximum afterwards, or else to keep a running maximum.
output1_max = -inf; ... output1_max = max(output1_max, output1(:));