フィルターのクリア

How to convert this ...for loop to while loop ?

2 ビュー (過去 30 日間)
Hocine hoho
Hocine hoho 2021 年 4 月 10 日
回答済み: David Fletcher 2021 年 4 月 10 日
for i=1:5
for j=1:20
amp=i*1.2;
wt=j*0.05;
v(i,j)=amp*sin(wt);
end
end

採用された回答

David Fletcher
David Fletcher 2021 年 4 月 10 日
i=1;
while i<=5
j=1;
while j<=20
amp=i*1.2;
wt=j*0.05;
v(i,j)=amp*sin(wt);
j=j+1;
end
i=i+1;
end

その他の回答 (0 件)

カテゴリ

Help Center および 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