Clear Filters
Clear Filters

set range to output file

1 view (last 30 days)
Balaji Ramdas
Balaji Ramdas on 5 May 2022
Answered: Walter Roberson on 5 May 2022
I have an output with a row of numbers ex: 1,2,3,4,5. How do i show set the limit so that i get number between 2 and 4

Accepted Answer

Walter Roberson
Walter Roberson on 5 May 2022
mask = Row >= 2 & Row <= 4;
Row(mask)

More Answers (0)

Categories

Find more on Modeling 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!