83Plus:Basic:Graphics:DrawF

From WikiTI
Revision as of 13:15, 18 September 2006 by Burntfuse (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Synopsis

Token size: 1 byte

Syntax: DrawF function

Draws the graph of a function.

Outputs:

function is drawn on the graph screen.

Comments

  • Number of Y= variables doesn't matter
  • Input may use any variables used in Y= functions

Examples

To draw the graph of sin(x):

ClrDraw
DrawF sin(x)

To graph a function involving multiple user supplied variables:

Prompt A,B,C
DrawF Alog(B)+C
Pause