| Author |
Comment/Response |
Patrick
|
09/29/11 4:03pm
It might be that you could do this:
oldHistory = $HistoryLength
$HistoryLength = 0
$HistoryLength = oldHistory
which removes all the stored history for the notebook and would clear up memory that way.
Or maybe you could do:
Unprotect[Out];
Out[(*whatever output the memory-hogging one is*)] =.
Protect[Out];
which clears the specified line (as accessed by the character %)
URL: , |
|