I am getting the error
Unable to allocate memory: to make array
when I try the following:
; A is an array
ind = WHERE(A GE 1)
A = A[ind]
Was wondering what I can do to free up memory? I tried
A = temporary(A)[ind]
but that gives me a syntax error.