./
append.pro
topappend
This function appends a second array to a first one. It's only real convenience is that it handles the case when the first array is undefined.
Return value
The concatenation of a and b
EXAMPLES: a = [1,2,3] b = [4,5] print, append(a,b) [1,2,3,4,5] d = [6,7] print, append(not_defined, d) [6,7]
Parameters
- a in required
The first array. This need not be defined
- b in required
The second array, which must be defined
File attributes
| Modifcation date: | Tue Apr 19 17:31:36 2011 |
| Lines: | 38 |
![[attach.png]](idldoc-resources/attach.png)