Difference between revisions of "Join 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 )
(command syntax: changed [ ] into ( ))
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<noinclude>{{Manual Page|version=4.2}}</noinclude>
+
<noinclude>{{Manual Page|version=5.0}}</noinclude>{{command|list}}
{{command|list}}
+
;Join( &lt;List>, &lt;List>, ... )
;Join[ <List 1>, <List 2>, ... ]:Joins the two (or more) lists.
+
:Joins the two (or more) lists.
:{{Note|1=The new list contains all elements of the initial lists even if they are the same. The elements of the new list are not re-ordered.}}
+
:{{Note|1=The new list contains all elements of the initial lists even if they are the same. The elements of the new list are not re-ordered.}}
:{{Example|1=<code>Join[{5, 4, 3}, {1, 2, 3}]</code> creates the list ''{5, 4, 3, 1, 2, 3}''.}}
+
:{{Example|1=<div><code>Join({5, 4, 3}, {1, 2, 3})</code> creates the list ''{5, 4, 3, 1, 2, 3}''.</div>}}
  
;Join[ <List of lists> ]:Joins the sub-lists into one longer list.
+
;Join( &lt;List of Lists> )
 +
:Joins the sub-lists into one longer list.
 
:{{Note|1=The new list contains all elements of the initial lists even if they are the same. The elements of the new list are not re-ordered.}}
 
:{{Note|1=The new list contains all elements of the initial lists even if they are the same. The elements of the new list are not re-ordered.}}
 
:{{Examples|1=<br/>
 
:{{Examples|1=<br/>
:*<code><nowiki>Join[{{1, 2}}]</nowiki></code> creates the list ''{1, 2}''.
+
:*<code><nowiki>Join({{1, 2}})</nowiki></code> creates the list ''{1, 2}''.
:*<code>Join[{{1, 2, 3}, {3, 4}, {8, 7}}]</code> creates the list ''{1, 2, 3, 3, 4, 8, 7}''.}}
+
:*<code>Join({{1, 2, 3}, {3, 4}, {8, 7}})</code> creates the list ''{1, 2, 3, 3, 4, 8, 7}''.}}

Latest revision as of 11:21, 6 October 2017


Join( <List>, <List>, ... )
Joins the two (or more) lists.
Note: The new list contains all elements of the initial lists even if they are the same. The elements of the new list are not re-ordered.
Example:
Join({5, 4, 3}, {1, 2, 3}) creates the list {5, 4, 3, 1, 2, 3}.


Join( <List of Lists> )
Joins the sub-lists into one longer list.
Note: The new list contains all elements of the initial lists even if they are the same. The elements of the new list are not re-ordered.
Examples:
  • Join({{1, 2}}) creates the list {1, 2}.
  • Join({{1, 2, 3}, {3, 4}, {8, 7}}) creates the list {1, 2, 3, 3, 4, 8, 7}.
© 2024 International GeoGebra Institute