How to create larger matrix within a loop?

I have the code below, I need to create a matrix with all DATA values in the rows
(DATA_new=[DATA;DATA;....] but the problem is that the MATLAB save the last value
of DATA. I don't know how I can have a bigger matrix with all DATA vectors! Does
anyone know that?
for m=0:11;
m=m+1;
for n=1:15;
DATA =[m,n]
end
end

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 16 日
編集済み: Azzi Abdelmalek 2016 年 7 月 16 日

0 投票

DATA=[]
for m=0:11;
m=m+1;
for n=1:15;
DATA =[DATA;m,n]
end
end
You can do it without for loop
[x,y]=meshgrid(1:12,1:15)
DATA=[x(:) y(:)]

1 件のコメント

Sophi gra
Sophi gra 2016 年 7 月 16 日
Thank you very much. it did work!

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by