You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command deletes a range of values within given array and shifts remaining values to fill the deletion gap.
Important: Currently (r14395) the command uses getarraysize internally, which leads to unpredictable results with arrays, that contain empty elements. It is recommended to use a combination of copyarray and cleararray instead.
Examples
'''deletearray''' @array, 10;
Deletes the first 10 elements of the array and shifts all other values by one to the left.