Difference between revisions of "83Plus:Basic:Graphics:DrawF"
From WikiTI
(→Synopsis) |
|||
Line 5: | Line 5: | ||
'''Syntax:''' DrawF ''function'' | '''Syntax:''' DrawF ''function'' | ||
+ | |||
Draws the given function on the graph screen, regardless of how many Y= variables have been filled. | Draws the given function on the graph screen, regardless of how many Y= variables have been filled. | ||
Revision as of 09:18, 6 December 2005
Contents
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