Solved
Repeat values in an array
I have an array where I would like to replace the zero values with the previous non-zero value.
i.e. convert { 15, 0, 0, 23, 0, 0, 0 } to { 15, 15, 15, 23, 23, 23, 23 }
Any ideas?
I have an array where I would like to replace the zero values with the previous non-zero value.
i.e. convert { 15, 0, 0, 23, 0, 0, 0 } to { 15, 15, 15, 23, 23, 23, 23 }
Any ideas?
Pretty much the exact same thing was answered several months ago, here. The only real difference in that case is the zero values are replaced by the next nonzero member instead of the previous, but that should require only a very simple adjustment of the code.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.