Difference between revisions of "Take Command"

From GeoGebra Manual
Jump to: navigation, search
m (changed CAS syntax description)
m (change CAS View note)
Line 13: Line 13:
 
:{{example| 1=<div><code><nowiki>Take["GeoGebra", 3, 6]</nowiki></code> yields the text ''oGeb''.</div>}}
 
:{{example| 1=<div><code><nowiki>Take["GeoGebra", 3, 6]</nowiki></code> yields the text ''oGeb''.</div>}}
  
{{hint|1=
+
{{Note|1=
In the [[File:Menu view cas.svg|link=|16px]] [[CAS View]] the input list can contain different types of objects:
+
In the [[File:Menu view cas.svg|link=|16px]] [[CAS View]] it works just for lists
:{{example| 1=<div><code><nowiki>Take[{1, 2, a, 4, 5}, 2, 4]</nowiki></code> yields ''{2, a, 4}''.</div>}}
 
 
}}
 
}}

Revision as of 22:19, 8 January 2016


Take[ <List>, <Start Position> ]
Returns a list containing the elements from Start Position to the end of the initial list.
Example:
Take[{2, 4, 3, 7, 4}, 3] yields {3, 7, 4}.
Take[ <Text>, <Start Position> ]
Returns a text containing the elements from Start Position to the end of the initial text.
Example:
Take["GeoGebra", 3] yields the text oGebra.
Take[ <List>, <Start Position>, <End Position> ]
Returns a list containing the elements from Start Position to End Position of the initial list.
Example:
Take[{2, 4, 3, 7, 4}, 3, 4] yields {3, 7}.
Take[ <Text>, <Start Position>, <End Position> ]
Returns a text containing the elements from Start Position to End Position of the initial text.
Example:
Take["GeoGebra", 3, 6] yields the text oGeb.


Note: In the Menu view cas.svg CAS View it works just for lists
© 2024 International GeoGebra Institute