Info

This question is closed. Reopen it to edit or answer.

i need an if condition that analyzes data from a for loop

2 views (last 30 days)
how can i express an if condition inside a for loop that expells numbers that are greater than a static number let's say 50
so i do not want to the resluts that are more than 50 to show up in my results

Answers (1)

Walter Roberson
Walter Roberson on 23 Apr 2019
The easiest way is to filter after you have stored everything:
YourVariable(YourVariable>50) = [];
  1 Comment
Omar Almahallawy
Omar Almahallawy on 23 Apr 2019
unfortunatly when i use this code, i end up with [ ] with the numbers that don't satisfy the condition

This question is closed.

Community Treasure Hunt

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

Start Hunting!