- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Append Data to End of Array
I am having issues appending data to the end of an array. I have been using the concatenate operator (||), but then the result is a matrix which messes up the calculations I am working on. Is there an easy way to do this?
Example:
// Sample data set
data1 = [1, 2, 3, 4, 5];
data2 = [6, 7, 8, 9, 10];
result = data1 || data2;
/* output of result:
[1 6,
2 7,
3 8,
4 9,
5 10] */
// desired result: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Append Data to End of Array
Change your concatenation to:
result = data1 |/ data2;
BTW....in JSL terms, you do not have an "Array", you have a "Matrix"
Jim
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Append Data to End of Array
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Append Data to End of Array
Change your concatenation to:
result = data1 |/ data2;
BTW....in JSL terms, you do not have an "Array", you have a "Matrix"
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Append Data to End of Array
Thanks guys that's exactly what I needed!