CAS inside prgm ?!
|
02-05-2015, 09:15 PM
Post: #1
|
|||
|
|||
CAS inside prgm ?!
Hi,
I'd like something these way : Code:
But it doesn't work like these... I try with a CAS program but without success... Code:
Can you help me to learn good practise ? What can we realy do with CAS program for that kind of problem ? Thank you for your help. |
|||
02-05-2015, 09:30 PM
(This post was last modified: 02-05-2015 09:34 PM by Han.)
Post: #2
|
|||
|
|||
RE: CAS inside prgm ?!
Code:
Pretty much all CAS commands that do not natively work in Home require their arguments be passed as strings. The strings may be saved as variables. Thus, CAS.command("arg1", "arg2") can be replaced by CAS.command(arg1,arg2) where arg1 and arg2 are string variables. This style does not allow string expressions as arguments, however. So CAS.command("arg1of2" + "arg2of2") would not work (generally speaking) Graph 3D | QPI | SolveSys |
|||
02-07-2015, 05:19 PM
Post: #3
|
|||
|
|||
RE: CAS inside prgm ?!
Thank you so much Han,
As always your help is invaluable. I learned a lot by reading your articles. Have a nice day ! |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)