08-30-2023 02:07 PM - edited 08-30-2023 02:09 PM
Hi... I'm going to try to explain what I am attempting to do.
I have a LabVIEW VI that returns an array of 64 positions.
Teststands call this VI 8 times in parallel, so I will be storing 8 arrays, one for each thread.
I need to concatenate the arrays into a single [8][64] array from each thread to send it to another VI in LabVIEW.
Thanks!
08-31-2023 01:13 AM
Good question... the ArrayManipulation functionality of in TestStand is qujite limited
There is (TS2019) a SetElements function, yet it only seems to work for scalar values to be set in the target array but not for SubArrays to be inserted.
I guess you could implement a sophisticated For Loop that can achieve your goal.
A LabVIEW module might be the far easier (to read) solution