Post Reply 
Autoscale from program call
04-18-2023, 08:01 AM (This post was last modified: 04-19-2023 05:34 AM by ftneek.)
Post: #1
Autoscale from program call
I created a function to insert a n points into the Statistics 2Var app and starts the plot view. But is there a way I can also get it to trigger autoscale from the function call? It's a little inconvenient to have some extra button presses each time.

For reference, I'm trying to recreate a plot I saw on youtube. I would also like to see if I can "animate" it by adding the points one by one, but I have I feeling I might need to invest some time learning how to use the geometry app for that.

Code:
EXPORT polar_graph(n)
BEGIN

L1:=MAKELIST(X*e^(X*i),X,1,n);
C1:=RE(L1);
C2:=IM(L1);
STARTAPP("Statistics 2Var");
STARTVIEW(1);

END;

- neek
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Autoscale from program call - ftneek - 04-18-2023 08:01 AM
RE: Autoscale from program call - ftneek - 04-18-2023, 04:44 PM
RE: Autoscale from program call - ftneek - 04-18-2023, 06:19 PM



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