Post Reply 
Can app equations be indexed?
01-13-2017, 05:20 PM
Post: #3
RE: Can app equations be indexed?
On my side I've come up with:
Code:
EXPORT AGV(list)
BEGIN
LOCAL j;
  FOR j FROM 1 to SIZE(list) DO
     EXPR("Advanced_Graphing.V"+(j-1)+":=UPPER(STRING(list("+j+")))");
  END;
END;
which takes care of the conversion of the lower case variables you may use in CAS to upper case variables required by the Advanced Graphic app.

You may need to check additionally that the input list doesn't have more than 10 elements.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Can app equations be indexed? - DrD - 01-13-2017, 04:45 PM
RE: Can app equations be indexed? - Didier Lachieze - 01-13-2017 05:20 PM
RE: Can app equations be indexed? - DrD - 01-13-2017, 05:46 PM
RE: Can app equations be indexed? - Han - 01-13-2017, 08:35 PM
RE: Can app equations be indexed? - DrD - 01-14-2017, 09:13 PM
RE: Can app equations be indexed? - Han - 01-14-2017, 09:50 PM
RE: Can app equations be indexed? - DrD - 01-14-2017, 10:18 PM



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