Post Reply 
Please help me understand
03-02-2014, 03:56 PM
Post: #2
RE: Please help me understand
If you want to run CAS commands, it might be a better idea to make a CAS program than a Home program, because you won't have to EXPORT a x variable that is a non-CAS variable, may have a value and could interfer with CAS evaluation (especially for a command like solve that auto-quote parts of it's arguments). From CAS enter
dmy():=
BEGIN
LOCAL ab;
ab:=solve(x^2-3=1,x);
print(ab);
return ab;
END;
then dmy()
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Please help me understand - DrD - 03-02-2014, 01:07 PM
RE: Please help me understand - parisse - 03-02-2014 03:56 PM
RE: Please help me understand - DrD - 03-02-2014, 04:22 PM
RE: Please help me understand - jebem - 03-02-2014, 04:41 PM
RE: Please help me understand - DrD - 03-02-2014, 05:23 PM
RE: Please help me understand - jebem - 03-02-2014, 05:33 PM
RE: Please help me understand - DrD - 03-02-2014, 05:45 PM



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