How to create an interval for an if statement?
5 views (last 30 days)
Show older comments
Wolfgang McCormack
on 11 Mar 2021
Commented: Cris LaPierre
on 12 Mar 2021
Hi all,
How can I say if q equals to 5 or 10 or 15 or ..... then
if q == 5:5:200 does not work.
0 Comments
Accepted Answer
Cris LaPierre
on 11 Mar 2021
Try ismember
if ismember(q,5:5:200)
2 Comments
Cris LaPierre
on 12 Mar 2021
I wouldn't use this approach for that. There are other functions I would point out to you.
- yearYear number
- quarterQuarter number
- monthMonth number and name
- weekWeek number
- dayDay number or name
- hourHour number
- minuteMinute number
- secondSecond number
Combine these with >= and <= to find the indices that meet your criteria.
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!