Hi. I'm wondering if it is possible to save a matrix or list to a table as a variable, as in:
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << New Table Variable("Day_mat", [42 43]);
This did not work of course, but is there another way? One option I'm considering is saving it as a table script instead, as in:
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << New Script("Dat_mat_script", Day_mat = [42 43]);
Just wondering if the community has a better idea? Thanks!