displaying only even values in a for loop?

27 ビュー (過去 30 日間)
Evan H
Evan H 2015 年 9 月 23 日
回答済み: Purushottama Rao 2015 年 9 月 23 日
How do I modify the following for loop with an if statement so that it only displays even values of m
for m=1:100
num = 1/(m+1)
end

回答 (2 件)

Purushottama Rao
Purushottama Rao 2015 年 9 月 23 日
If you want to run entire loop on even numbers
you can try
for m=2:2:1000
.....
.....
end
If your loop runs on the entire range of [1 1000], and you want to display only even numbers then you can use
for m=1:1000
.....
if (mod(m,2)==0)
....
end
.....
end

Jon
Jon 2015 年 9 月 23 日
Use the rem command. If the remainder is zero after dividing the number by 2, display it. I'm purposely not writing the code.

カテゴリ

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