set range to output file

조회 수: 1 (최근 30일)
Balaji Ramdas
Balaji Ramdas 2022년 5월 5일
답변: Walter Roberson 2022년 5월 5일
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

채택된 답변

Walter Roberson
Walter Roberson 2022년 5월 5일
mask = Row >= 2 & Row <= 4;
Row(mask)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Author Block Masks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by