01-13-2016 02:28 PM
Hi all,
I need to pass a cell data type variable from one MATLAB script node in LabView to another, but cell is not listed as an "output" data type in the script node.
Is there any way to do this without converting to a 2D array? Each column in my cell has a different number of rows...
Thanks!
Mike
Solved! Go to Solution.
01-13-2016 04:27 PM
Nevermind...
Instead of using a typical LabView wire I just said
assignin('base', 'varname', varvalue);
in the first script and called varname from the second node to get my cell.
Easy... duh 😛 Leaving here if anyone in the future has the same question.