How to add element to cell array directly in matfile?
Show older comments
I have got a matfile with cell array. So I want ta add the next element to my cell array, but I can't do something like I wrote below(see code), because the data is big and doing it in loop would be very expensive:
cell_array = m.cell_array; % m is matfile object containig cell
cell_array{end + 1} = c; % c is element which I want to add
save('filename', 'cell_array');
How can I do it directly without loading loading and saving the variable?
Accepted Answer
More Answers (0)
Categories
Find more on Workspace Variables and MAT Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!