Memory handling in lists/arrays allocation/deallocation
Subject: Memory handling in lists/arrays allocation/deallocation
From: Elianto84
Date: Tue, 26 Dec 2006 18:05:06 +0100
I'd like to know how to efficiently manage lists/arrays
allocation/deallocation in Maxima,
'cause i've experienced that the execution of a code like
for i:... do ( /* lots of times */
list : certain_function_of_i_that_returns_a_list,
... /* other operations over list */
)
maybe really RAM-consuming.
Thanks in advance.