ArrayTools
Append
append element to Array
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
Append(A,expr,opts)
A
-
: Array or Vector
expr
: expression to append
opts
: (optional) inplace=true or inplace=false
inplace = true or false
Specifies whether the append operation should reuse the existing Array or generate a new Array. The default value is true.
The Append(A,expr) command appends the expression expr to the end of the Vector or the 1-D Array, A.
When inplace=false is specified, the append operation allocates a new Array and does not modify the existing one.
Otherwise, the existing object is modified, and, if necessary, resized. The resizing will be performed in such a way that it takes only constant time and space on average. This is achieved by reserving extra space whenever the Array/Vector needs to be grown, and then using this space for subsequent expansions without the need to reallocate memory. Maple always grows the space for the Array/Vector by at least a fixed percentage, which ensures the average constant time and space usage.
This function is part of the ArrayTools package, so it can be used in the short form Append(..) only after executing the command with(ArrayTools). However, it can always be accessed through the long form of the command by using ArrayTools[Append](..).
with⁡ArrayTools:
A≔Array⁡2,3,5
A≔235
Append⁡A,1x
2351x
Append⁡A,sin⁡x
2351xsin⁡x
v≔1,2⁢x
v≔12⁢x
Append⁡v,3⁢x2,inplace=false
12⁢x3⁢x2
v
12⁢x
The ArrayTools[Append] command was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
ArrayTools[Concatenate]
ArrayTools[Extend]
Download Help Document