How to add element to cell array directly in matfile?
Ältere Kommentare anzeigen
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?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Workspace Variables and MAT Files finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!