Unsure how to make Y, over range x, output in matrix not a singular answer.
h=.1;
y=1;
for x=0:h:10
Y=y+h.*x;
end

回答 (1 件)

David Hill
David Hill 2022 年 1 月 25 日

0 投票

No for-loop needed.
h=.1;
y=1;
x=0:h:10;
Y=y+h*x;

カテゴリ

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

タグ

質問済み:

2022 年 1 月 25 日

回答済み:

2022 年 1 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by