CALC 1 Home Documentation Home Contact
Loading

CALC 1 Memory Functions

 

Function Description Example Result
append(value, list) Appends the value to the list. append(123.456, listx) 123.46
appendn(value, list, ntimes) Appends the value to the list, n times. appendn(123.456, listx, 5) 123.46
clrl(value) Clears the specified list. clrl(listf)  
dell(list, memloc) Deletes the value at the index of the list and shifts values. dell(listx, count(listx)-1)  
lastrgx() Recalls the value of the last x register. lastrgx()  
rclflag(memloc) Recalls the value (0 or 1) of a flag memory location. rclflag(9)  
rcll(list, memloc) Recalls a value of a list. rcll(listy, 5)  
rgt() The value of the stack t register. rgt()  
rgx() The value of the stack x register. rgx()  
rgy() The value of the stack y register. rgy()  
rgz() The value of the stack z register. rgz()  
stoflag(value, memloc) Stores a value (0 or 1) to a flag memory location. stoflag(true,0) 1
stol(list, memloc, value) Stores the value at the index of the list stol(listy, 5, 22.14) 22.14