필터 지우기
필터 지우기

How to find positive and negative outputs?

조회 수: 22 (최근 30일)
Emily
Emily 2022년 5월 9일
답변: Emily 2022년 5월 10일
Hi, I'm trying to have a= dif<-100 or dif>100 with dif being the difference between two numbers, but having trouble getting the negative values to work.
I currently have it as
for i=0:5
dif=struct.smth(:,10) - struct.smth(:,i)
num = (dif <-100) | (100 < dif);
Set.Number =find(num);
end
I have also tried
dif=abs(dif);
num=100<dif;
Set.Number =find(num);
but still only get the positive values to work.
The output when the negative number is triggered is "0x1 empty double column vector"
  댓글 수: 6
Voss
Voss 2022년 5월 10일
@Emily Maybe there are no elements of dif less than -100.
Can you provide a concrete example where the output of find is not what you expect?
dpb
dpb 2022년 5월 10일
편집: dpb 2022년 5월 10일
" negative number is triggered is "0x1 empty double column vector"
It's always possible there ARE no values such that struct.smth(:,10) - struct.smth(:,i) < -100 in which case the empty vector is the expected result.
You need to always remember to write your code when using find and other functions which have such variable-number of outputs where, in fact, one of the valid results is that the result is NIL.
Often placing such code within the try...catch portion and the fixup code for the empty case in the catch...end portion of a try, catch block construct is a slick way to deal with the issue. It may be that the catch block is empty; there's nothing to do in that case.
Also NB:
ixG100 = find(abs(struct.smth(:,10) - struct.smth(:,i)) >100);
will find both cases; you can determine which easily enough when processing the results might be another way to approach it.
I didn't look at all at what really trying to do; just generic comments...

댓글을 달려면 로그인하십시오.

채택된 답변

Emily
Emily 2022년 5월 10일
Values were being stored as uint16, changed the inputs to double to get it working.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by