How do you remove/delete elements from an array? Assume I have this array of paired numbers:
myArray(0) = (0.375, 0.687)
myArray(1) = (1.838, 0.159)
myArray(2) = (1.736, 0.176)
myArray(3) = (0.963, 0.382)
myArray(4) = (0.324, 0.723)
myArray(5) = (0.069, #N/A)
myArray(6) = (0.674, 0.51)
myArray(7) = (0.979, 0.376)
myArray(8) = (0.069, #N/A)
myArray(9) = (0.667, 0.513)
myArray(10) = (0.766, 0.465)...
I need to create an array without errors because I'll eventually need to take the correlation of the log of the numbers.
Bookmarks