MATLAB: Using tables in earlier versions.

MATLABtableversions

I wrote a program that uses the new table objects.
However, my collaborator uses a previous version of MATLAB and therefore doesn't have that functionality. Is there a way for him to use some of the functionality, or do I have to pass my tables as cells?
Thank you.

Best Answer

Use table2cell function to convert your table data to a cell array, and save it in a mat file.