Clearing the cell array at the end of the loop

6 ビュー (過去 30 日間)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2015 年 5 月 11 日
回答済み: Thomas Koelen 2015 年 5 月 11 日
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

採用された回答

Thomas Koelen
Thomas Koelen 2015 年 5 月 11 日
At the end of you loop you just put:
d={};
Thomas

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by