1より小さい数でループ計算を実行するには?
2 views (last 30 days)
Show older comments
1より小さい数でループ計算を実行するには,どんなプログラムを記述すれば良いですか?
具体的には,while文を用いて0.5刻みで計算したいです.
0 Comments
Answers (1)
Atsushi Ueno
on 15 Jan 2022
x = -2; % 例として変数xに2を設定
while x < 1
x % ここで変数xを使って計算する
x = x + 0.5;
end
0 Comments
See Also
Categories
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!