list functions sugestion
|
09-20-2015, 08:41 PM
(This post was last modified: 09-20-2015 08:44 PM by komame.)
Post: #2
|
|||
|
|||
RE: list functions sugestion
Hi,
To get n-th item of the list you can use index: local l; //declare variable for the list l:={1, 2, 3} l(2) -> 2 you can also store values in the n-th item of list that way: l(2):=4 PRINT(l) => {1, 4, 3} FOREACH? => there is the ITERATE function, but not for all purposes. Arr2List and List2Arr? => Check list2mat and mat2list. BR |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 3 Guest(s)