Effacer les filtres
Effacer les filtres

変数'X'のサイズが​ループ反復ごとに変更​されているようです。​高速化する為に事前割​り当てを検討してくだ​さい(高速化)

39 vues (au cours des 30 derniers jours)
wataru suzuki
wataru suzuki le 7 Nov 2020
Commenté : Ameer Hamza le 8 Nov 2020
MATLABで1~変数Nを用いてfor文で配列を作成してました。すると
「変数'X'のサイズがループ反復ごとに変更されているようです。高速化する為に事前割り当てを検討してください」
というようなMATLABのメッセージが発生しました。
for文の繰り返す数が多く、このエラーメッセージのように高速化したいのですが、どのように改善すべきか私では分かりませんでした。
どのようにすべき、考えるか教えていただけないでしょうか?

Réponse acceptée

Ameer Hamza
Ameer Hamza le 7 Nov 2020
For example, the following code will show the warning.
x = [];
for i = 1:10
x = [x i];
end
Similarly following code will also show warning
x = [];
for i = 1:10
x(i) = i;
end
Following code use pre-allocation and you will get no warning
x = zeros(1,10); % pre-allocation
for i = 1:10
x(i) = i; % no warning now
end
  2 commentaires
wataru suzuki
wataru suzuki le 8 Nov 2020
thank you
Ameer Hamza
Ameer Hamza le 8 Nov 2020
I am glad to be of help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!