Post Reply 
Do PPL program input parameters accept symbolic arguments?
10-27-2014, 03:37 PM (This post was last modified: 10-27-2014 03:48 PM by Han.)
Post: #2
RE: Do PPL program input parameters accept symbolic arguments?
Would you care to share a few code snippets? I think seeing what it is you want to do would make it easier to make suggestions.

Code:

MYINT(v1,v2,v3,v4)
BEGIN
int(QUOTE(v1),QUOTE(v2),v3,v4);
END;

The code above works just fine. What you must always keep in mind, though, is that this program behaves differently in Home vs in CAS. In Home, you can use MYINT('X','X',1,2) and get the right answer. However, in CAS, the 'X' are treated as constants (as opposed to 'x', provided you also did not store any values into x).

In sum, MYINT() is placed under the same restrictions as built-in commands.

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


Messages In This Thread
RE: Do PPL program input parameters accept symbolic arguments? - Han - 10-27-2014 03:37 PM



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