Post Reply 
Plotting a user function?
10-01-2015, 07:17 PM
Post: #6
RE: Plotting a user function?
(02-28-2014 02:21 AM)jte Wrote:  
(02-09-2014 11:01 AM)Giancarlo Wrote:  
- uncheck all the other V# with a loop with the command UNCHECK(4);

Just a comment: you can pass lists to UNCHECK. For example, UNCHECK(MAKELIST(X,X,0,9)) will uncheck all 10 user formulas.

Interestingly, on the Android emulator UNCHECK seems able to handle lists for Function, but not for Solve. The embedded help for UNCHECK only describes the UNCHECK(n) syntax.

Code:

EXPORT TRYS()
BEGIN
 SolveTRY.E1:=QUOTE(X^2+X=0);
 SolveTRY.E2:="X^2+X=0";
 SolveTRY.UNCHECK(1); //WORKS
 Function.UNCHECK({1,2});//LIST WORKS ON FUNCTION
 //SolveTRY.UNCHECK(MAKELIST(X,X,1,9)); //DOESNT WORK ON SOLVE

END;

(The problem relates to the use of a list, the MAKELIST is not significant).

Stephen Lewkowicz (G1CMZ)
https://my.numworks.com/python/steveg1cmz
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Plotting a user function? - veeblefester - 02-09-2014, 01:09 AM
RE: Plotting a user function? - Giancarlo - 02-09-2014, 11:01 AM
RE: Plotting a user function? - jte - 02-28-2014, 02:21 AM
RE: Plotting a user function? - StephenG1CMZ - 10-01-2015 07:17 PM
RE: Plotting a user function? - Giancarlo - 02-28-2014, 07:00 AM



User(s) browsing this thread: 1 Guest(s)