How to avoid overwriting inside a for loop?

I'm using repmat inside my for loop. But at the end of the loop, it saves only the value of last iteration repeating that last value alone. How not to overwrite the values of repmat and extract all the values of iterations.

3 件のコメント

dpb
dpb 2019 年 7 月 25 日
Well. w/ zero lines of code to look at, the crystall ball has a real workout...
"Use array indices" is the best it can come up with at the moment...
dpb
dpb 2019 年 7 月 25 日
frame=repmat(FR,1,size(centreDark(:,1)))
What do you think the purpose of this line is? What are you trying to do with it?
The loop does indeed not use the indexing variable FR to save anything from one iteration to the other so it does, indeed, overwrite all the variables you create each loop.
The question is, what do you intend/want?
karishma koshy
karishma koshy 2019 年 7 月 26 日
編集済み: karishma koshy 2019 年 7 月 26 日
I just want to know to which frame the centre and radius point s detected belongs to. And finally I want to make table.with centre radius and frame number

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

回答 (1 件)

Abhilash Padma
Abhilash Padma 2019 年 7 月 29 日

0 投票

Hi,
Instead of declaring “frame” as an empty array, declare it as an empty cell array.
frame={};
And inside for loop, assign the return value of repmat function to “frame{FR}”.Make the following changes in your for loop which may solve your problem.
frame{FR}=repmat(FR,1,size(centreDark(:,1)));
fr=frame{FR};
Now, the cell array “frame stores every value of each iteration.

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

タグ

質問済み:

2019 年 7 月 25 日

回答済み:

2019 年 7 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by