set range to output file

1 Ansicht (letzte 30 Tage)
Balaji Ramdas
Balaji Ramdas am 5 Mai 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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 5 Mai 2022
mask = Row >= 2 & Row <= 4;
Row(mask)

Weitere Antworten (0)

Kategorien

Mehr zu Modeling finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by