Clearing the cell array at the end of the loop
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gopalakrishnan venkatesan
am 11 Mai 2015
Beantwortet: Thomas Koelen
am 11 Mai 2015
I need to clear the cell array at the end of the loop.
data ={'one','two','three'} element = {'four','five','six'}
for a =1:numel(data)
b = data(a);
c = element(b);
d = [b , c]
end
xlswrite('ddd.xls',d)
so after the write operation i need to clear the cell array (i.e d) as the loop will continue after that?
how can i do this?
Thanks a lot
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!