| Posted: 03:36pm 20 Nov 2020 |
Copy link to clipboard |
 Print this post |
|
Indeed. And the same for vector.
Another command that can be very useful is math v_slice or v_copy
Option base 0
Dim s(4)=(1,2,3,4,5) Dim d(2)
Math v_slice v(), 1, d()
The second argument is the position from de source vector to start copying the data.
D will be (2,3,4). |