フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

MATLAB help with using nested loops in matricies

2 ビュー (過去 30 日間)
Blake Sewell
Blake Sewell 2020 年 9 月 1 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Ok I'm posting a second time as I was informed on my last post that I need to show my attempt of coding towards the part to recieve help. In part 3 of my workshop assignment, I've gotten as far as to get the first 10 rows in a z=zeros(20,10) but I am unsure on what to do to get the remaining 10 rows at the bottom as they all still display zeros.
My code is as follows:
z=zeros(20,10);
for x = 1:10
for y=1:10
z(x,y)=2*x+y^2;
end
end
disp(z)
and this is what it looks like when I click run:

回答 (1 件)

Fangjun Jiang
Fangjun Jiang 2020 年 9 月 1 日
for x = 1:size(z,1)
  1 件のコメント
Blake Sewell
Blake Sewell 2020 年 9 月 1 日
Thankyou very much, appreciated <3

この質問は閉じられています。

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by