home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / apps / makegraph / !MakeGraph / Graphs / Notes / Line < prev   
Encoding:
Text File  |  1992-04-16  |  1.2 KB  |  35 lines

  1. DrawGraph - LINE PLOT - notes
  2.  
  3. The flag 'FROM_ORIGIN' means different things when
  4. you try to do different things.  It essentially
  5. adds 'another' data point to be concidered & hence
  6. plotted into lines etc...
  7.  
  8. The variable 'POINT_MARKERS', currently has four
  9. possible values, and some are more suitable than
  10. others for various data sets because of their
  11. shape.  Technically the best is 'CROSSED_BOX'
  12. because it marks 'exactly' the position of the
  13. data pair because it has a 'cross-hair'.
  14.  
  15. The variable 'LINE_IS_A' defines one of three
  16. types of lines that the code can draw.  The
  17. LINE_PLOT just draws a line between the points,
  18. CURVE_FIT does a beziere (sp?) curve around the
  19. points taking the two control points to be a
  20. line that extends across the X-axis 1/2 way
  21. between 'n' and 'n-1' or 'n+1'.  The Y-axis
  22. point follows a line with gradient taken
  23. from the gradient between (n-1) and (n+1).
  24. LINE_OF_BEST_FIT just gets an average point,
  25. and average gradient, and the rest I'm sure is
  26. 5th form maths!!! :-)
  27.  
  28. I strongly reccomend that you get your data in
  29. numerical order on the X-axis in the file.
  30.  
  31. The LINE_OF_BEST_FIT might be a bit unreliable,
  32. and so if you get some strange results, or no
  33. result it's not your fault!!!! :-).
  34.  
  35.