フィルターのクリア

Info

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

Write a loop which will be increasing variable i by 5 at each iteration till i reaches 50. Initial value of i is 12.

1 回表示 (過去 30 日間)
nty huy
nty huy 2019 年 10 月 7 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
im having a bit trouble with loops if somone can help me with this answer and explain as well it would be nice

回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 10 月 7 日
編集済み: Walter Roberson 2019 年 10 月 7 日
for VARIABLENAME = FIRST_VALUE : INCREMENT : LAST_VALUE
something
end
is nearly equivalent to
VARIABLENAME = FIRST_VALUE;
while VARIABLE_NAME <= LAST_VALUE
something
VARIABLE_NAME = VARIABLE_NAME + INCREMENT;
end
(The differences between the two have to do with the value that VARIABLENAME is left at if FIRST_VALUE > LAST_VALUE when INCREMENT is positive, or FIRST_VALUE < LAST_VALUE when INCREMENT Is negative; and also have to do with the value that VARIABLENAME will be left with after the last iteration in two different situations.)

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by