Post Reply 
Plot Values from a List Gen. by Program
01-14-2015, 10:44 AM (This post was last modified: 01-14-2015 02:25 PM by Snorre.)
Post: #2
RE: Plot Values from a List Gen. by Program
Hello hof,

(01-14-2015 07:28 AM)hof Wrote:  [...]
Ok, now for my simple question:
If I make a program, which depends for example on a lookup-table like a list L0.
Is it possible to plot the result, perhaps written to vector/list L1 to the plot screen including the x an y scale?
[...]
yes it is.
My basic approach for plotting L0 vs L1 would utilize the "Statistics 2Var"-App and look like:
Code:
BEGIN
  // ...
  STARTAPP("Statistics 2Var");  // Set current app.
  C1:=L0; C2:=L1;    // Copy lists to app data columns.
  SetIndep(S1,C1);   // Dataset 1 is column 1 ...
  SetDepend(S1,C2);  // ... vs column 2.
  Fit:=1;  // Turn fit plot off, since we're interested in the data points only.
  STARTVIEW(9);      // Show autoscaled plot.
END;

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


Messages In This Thread
RE: Plot Values from a List Gen. by Program - Snorre - 01-14-2015 10:44 AM



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