Saving matrix that contains cell arrays
2 views (last 30 days)
Show older comments
Can anyone tell me the best way to save a large file that looks like this? I will be sharing it with colleagues to use in Matlab.
I have tried
save gps_table.mat gps %gps is name of variable
but this doesn't work, it tells me 'Cannot import from an empty input file'
0 Comments
Answers (1)
David Hill
on 19 Apr 2021
writetable(gps,'gps_table.mat');
2 Comments
David Hill
on 20 Apr 2021
Sorry, this should work.
save('gps_table.mat','gps');
Alternatively
writetable(gps,'gps_table.txt');
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!