I am trying to implement the code which generates some table, works with it, extracts some numbers, add them to some other table, then clears the table (only the table and not the other elements of the running code) to free up RAM; and then repeats the process n times. Naively, I thought that it is enough to type Clear[table], and that's it. But the process manager shows that this is not the case:
tabbb = Table[{x, 1.01^x^(1/10)}, {x, 1, 2*10^7, 1}]; It holds 1.92 Gb, and the command
Clear[tabbb] does not free up the space. Could you please show how to free up the space carried by tabbb without exiting kernel?