how to declare array of variable size

26 ビュー (過去 30 日間)
Mohammad Golam Kibria
Mohammad Golam Kibria 2011 年 4 月 28 日
Hi,
I need an array of variable size. for example
for i: 1:63 myArray(i) = zeros(a,b); end
where a,b are changing its value in every loop;
can any one suggest me how to declare that type of array.

採用された回答

Oleg Komarov
Oleg Komarov 2011 年 4 月 28 日
for i = 1:63
myArray{i} = zeros(a,b);
end
  2 件のコメント
Mohammad Golam Kibria
Mohammad Golam Kibria 2011 年 4 月 28 日
It works but gives a warning. How to remove that warning. warning as follows :
The variable appears to be changed size on every loop iteration. consider preallocating for speed.
Oleg Komarov
Oleg Komarov 2011 年 4 月 28 日
Preallocate before the loop:
myArray = cell(61,1);

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by