08-12-2013 11:07 AM
Cell arrays were added to MathScript in LabVIEW 2012. The "cell" function itself is not implemented, but you can just assign values to create cell arrays:
new_cell_array{1} = [1 2; 3 4];
new_cell_array{2} = [7 8 9];
This will perform much faster than using the "eval" function. That being said, if you can write your code only using regular arrays, it would perform even faster than using cell arrays.
Kevin C.
08-12-2013 11:24 AM
Thanks Kevin, that is what I am trying to do now.
Thanks to everyone else for your help, it is greatly appreciated.