Difference between revisions of "83Plus:Basic:Graphics:DrawF"

From WikiTI
Jump to: navigation, search
(Examples)
m (nowiki formatting)
Line 20: Line 20:
 
== Examples ==
 
== Examples ==
 
To draw the graph of Sin(X)
 
To draw the graph of Sin(X)
<nowiki>
+
<nowiki>
 
+
 
:ClrDraw
 
:ClrDraw
 
+
:DrawF Sin(x)</nowiki>
:DrawF Sin(x)
+
</nowiki>
+
  
 
To graph a function involving multiple user supplied variables:
 
To graph a function involving multiple user supplied variables:
<nowiki>
+
<nowiki>
 
:Prompt A,B,C
 
:Prompt A,B,C
 
:DrawF Alog(B)+C
 
:DrawF Alog(B)+C
:Pause
+
:Pause</nowiki>
</nowiki>
+
  
 
== See also: ==
 
== See also: ==

Revision as of 15:23, 9 December 2005


Synopsis

Token size: 1 byte

Syntax: DrawF function

Draws the given function on the graph screen, regardless of how many Y= variables have been filled.

Outputs:

Given function, as graphed on graph screen.

Comments

  • Draws any function specified.
  • 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

See also: