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

From WikiTI
Jump to: navigation, search
(Cleaned up to match template)
Line 1: Line 1:
 
[[Category:83Plus:Basic:Graphics|DrawInv]]
 
[[Category:83Plus:Basic:Graphics|DrawInv]]
  
DrawInv draws the function as if the Y and X values were switched.  The following draws the inverse of y=x<sup>2</sup>:
+
== Synopsis ==
 +
'''Token size:''' ?
  
<nowiki>DrawInv X^2</nowiki>
+
'''Syntax:''' DrawInv ''function''
  
You should see a parabola starting at (0,0) moving off to the right.
+
Draws the inverse of a function.
  
Also you can use equations instead of strings.  The following draws the inverse of the equation in Y<sub>1</sub>:
+
== Outputs: ==
<nowiki>DrawInv Y1</nowiki>
+
  
You can access the equation variables by hitting [Vars], [Right] to Y-Vars, and finally to Functions.
+
The inverse of ''function'' (''function'' with the X and Y values switched) is drawn on the graph screen.
 +
 
 +
== Comments ==
 +
 
 +
*''function'' can be either a function specified directly (such as 3X^2) or one of the graph functions (such as Y3)
 +
 
 +
== Example ==
 +
 
 +
Draws a parabola starting at (0,0) and moving off to the right:
 +
 
 +
:DrawInv X^2
 +
 
 +
== See also: ==
 +
 
 +
[[83Plus:Basic:Graphics:DrawF|DrawF]]

Revision as of 11:26, 24 September 2006


Synopsis

Token size: ?

Syntax: DrawInv function

Draws the inverse of a function.

Outputs:

The inverse of function (function with the X and Y values switched) is drawn on the graph screen.

Comments

  • function can be either a function specified directly (such as 3X^2) or one of the graph functions (such as Y3)

Example

Draws a parabola starting at (0,0) and moving off to the right:

:DrawInv X^2

See also:

DrawF