Difference between revisions of "83Plus:Basic:Graphics:DrawF"
From WikiTI
(→Synopsis) |
(Cleaned up to match template) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
'''Syntax:''' DrawF ''function'' | '''Syntax:''' DrawF ''function'' | ||
− | Draws | + | Draws the graph of a function. |
== Outputs: == | == Outputs: == | ||
− | + | ''function'' is drawn on the graph screen. | |
== Comments == | == Comments == | ||
− | * | + | *Number of Y= variables doesn't matter |
*Input may use any variables used in Y= functions | *Input may use any variables used in Y= functions | ||
− | |||
== Examples == | == Examples == | ||
− | To draw the graph of | + | To draw the graph of sin(x): |
− | <nowiki> | + | <nowiki> |
− | + | ClrDraw | |
− | + | DrawF sin(x)</nowiki> | |
− | </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 | |
− | + | DrawF Alog(B)+C | |
− | + | Pause</nowiki> | |
− | </nowiki> | + | |
− | + | ||
− | + |
Latest revision as of 12:15, 18 September 2006
Contents
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