How to create a cell array with constant data input without overwriting?

1 回表示 (過去 30 日間)
Fercho_Sala
Fercho_Sala 2021 年 6 月 9 日
コメント済み: Fercho_Sala 2021 年 6 月 25 日
I’m running a code for different files, however I need to sore the results in a cell array without overwriting the info in each cell, I mean every time I run the code for a different file as a result it creates a second row of data in the cell array. Thanks.
  6 件のコメント
Fercho_Sala
Fercho_Sala 2021 年 6 月 10 日
@Stephen Cobeldick Apparently, it doesn't explain the fact how you can create a cell array or a vector without overwriting the results of the previous run.
Stephen23
Stephen23 2021 年 6 月 10 日
"Apparently, it doesn't explain the fact how you can create a cell array or a vector without overwriting the results of the previous run. "
Here, I highlighted it for you:
How to use indexing in loops is explained here:
See also:

サインインしてコメントする。

回答 (1 件)

kishore kavuru
kishore kavuru 2021 年 6 月 18 日
num_files = 10; cell_data = {}; for k = 1:num_files cell_data{end+1} = filenames(k);%example %file names end
  1 件のコメント
Fercho_Sala
Fercho_Sala 2021 年 6 月 25 日
@kishore kavuru how this exactly works?, independently of the kind of file extention?, thks

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by