Clearing the cell array at the end of the loop

6 visualizaciones (últimos 30 días)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan el 11 de Mayo de 2015
Respondida: Thomas Koelen el 11 de Mayo de 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

Respuesta aceptada

Thomas Koelen
Thomas Koelen el 11 de Mayo de 2015
At the end of you loop you just put:
d={};
Thomas

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by