So ima trying to get a matrix from a nested loop but i keep getting a one answer SIGMA in the workspace but thanks to the disp(SIGMA) i get a bunch of numbers in the command window. Why are they different?
古いコメントを表示
for x=0:30
for y=0:30
SIGMA=(x*y);
end
end
回答 (1 件)
Walter Roberson
2017 年 11 月 27 日
Change
SIGMA=(x*y);
to
SIGMA(x+1,y+1) = (x*y);
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!