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

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 5 Mai 2022

0 Stimmen

mask = Row >= 2 & Row <= 4;
Row(mask)

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by