How to remove specific numbers from an array?
조회 수: 14 (최근 30일)
이전 댓글 표시
lb = [0 0 0 0 0];
ub = [24 24 24 24 24];
How can I remove or not consider certain values in the array? For each 0 - 24 range for 5 different slots, I want to eliminate the numbers 10 to 18.
댓글 수: 0
채택된 답변
Askic V
2023년 2월 9일
편집: Askic V
2023년 2월 28일
If you want to remove certain values from the array, please have a look at this simple example:
v = randi(10,1,20) % generate 20 random integer numbers in interval 0 to 20
ind = v>3 & v<7; % find indices of elements in certain interval
v(ind) = [] % remove those elements that fits criteria
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Problem-Based Optimization Setup에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!