Post Reply 
Function in program
02-16-2015, 04:21 PM
Post: #2
RE: Function in program
Two ways:

CAS.command("arg1", "arg2", ..., "argn")

Code:
EXPORT calcul()
CAS.cSolve("x^4-1=0","x");
END;

or create a cas program:

Code:
#cas
calculx():=
BEGIN
cSolve(x^4-1=0,x);
END;
#end

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Function in program - nakjaen - 02-16-2015, 03:47 PM
RE: Function in program - Han - 02-16-2015 04:21 PM
RE: Function in program - nakjaen - 02-16-2015, 11:28 PM



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