Difference between revisions of "Function Command"

From GeoGebra Manual
Jump to: navigation, search
m (Text replace - "<div class="box info"> 48px|left This page is part of the official manual for print and pdf. For structural reasons normal users can't edit this page. If you found any errors on this page please contact )
(added syntax for betamanual v.5)
Line 9: Line 9:
 
<code>Function[{2, 4, 0, 1, 0, 1, 0}]</code> yields a triangular wave between ''x=2'' and ''x=4''.
 
<code>Function[{2, 4, 0, 1, 0, 1, 0}]</code> yields a triangular wave between ''x=2'' and ''x=4''.
 
<code>Function[{-3, 3, 0, 1, 2, 3, 4, 5}]</code> yields a linear equation with slope ''=1'' between ''x=-3'' and ''x=3''.
 
<code>Function[{-3, 3, 0, 1, 2, 3, 4, 5}]</code> yields a linear equation with slope ''=1'' between ''x=-3'' and ''x=3''.
 +
}}
 +
 +
{{betamanual|version=5.0|
 +
; Function[ <Expression>, <Parameter Variable 1>, <Start Value>, <End Value>, <Parameter Variable 2>, <Start Value>, <End Value> ]  :{{description}}
 
}}
 
}}

Revision as of 12:00, 19 May 2013



Function[Function f, Number a, Number b]
Yields a function graph, that is equal to f on the interval [a, b] and not displayed outside of [a, b].
Note: This command is deprecated. To restrict the function’s domain, create a conditional function using the If command, e.g.
f(x) = If[-1 < x < 1, x²].
Note: This command does not work with Tools / Macros. Use the If command as above.
Function[<List of Numbers>]
Yields the following function: The first two numbers determine the start x-value and the end x-value. The rest of the numbers are the y-values of the function in between in equal distances.
Example: Function[{2, 4, 0, 1, 0, 1, 0}] yields a triangular wave between x=2 and x=4. Function[{-3, 3, 0, 1, 2, 3, 4, 5}] yields a linear equation with slope =1 between x=-3 and x=3.


© 2024 International GeoGebra Institute