[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Clean the table
- From: RLake@...
- Date: Tue, 29 Jan 2002 14:37:24 -0500
> I have a table:
> t={ 1,2,3,4,...9999,10000; a="new", b="old"}
> Which is the best and faster way to clean
> the lfieldlist "[1]...[10000]" from the table?
The fastest way, if you are doing this a lot, is to keep the vector part in
a separate table:
t = {vec = {1, 2, 3, 4...}, a = "new", b="old}
Then you can clean the things out with:
t.vec = nil