finding values within a limit
조회 수: 3 (최근 30일)
이전 댓글 표시
Thishan Dharshana Karandana Gamalathge
2017년 6월 17일
답변: Star Strider
2017년 6월 17일
I have a couple of indices selected via t1=find(touse==1); Then I need to use it to find a few values that are below a particular value. But it gives a value which is above that margin as well. If my limit is 10.5 i used the following code
test(find((test(t1))<10.5))
but it also gives a value above 10.5. Is there a mistake in that code?
Thanks.
댓글 수: 0
채택된 답변
Star Strider
2017년 6월 17일
I believe your error is in using the ‘t1’ result.
Try this:
test = 20*rand(20,1); % Create Data
Result = test(test < 10.5); % Desired Output
I have no idea how ‘test’ and ‘touse’ are related, so you will likely have to experiment to get the result you want.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Inputs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!