finding x of y

조회 수: 1 (최근 30일)
soloby
soloby 2015년 6월 25일
댓글: soloby 2015년 6월 25일
x = -10:0.1:10;
f1 = trapmf(x,[-2 0 0 2]);
index = find(f1 ==.05);
Xidx = x(index)
Why would Xidx give me an empty matrix 1-by-0?
I know for a fact that f1 has 0.05 at the 82nd iteration

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 6월 25일
편집: Azzi Abdelmalek 2015년 6월 25일
Try this
x = -10:0.1:10;
f1 = trapmf(x,[-2 0 0 2])
index=find(abs(f1-0.5)<10^(-10))
Xidx=x(index)
And read this
  댓글 수: 1
soloby
soloby 2015년 6월 25일
this works perfectly, thanks.
One more question, if i wanted to do this for all values of f1, would a for loop be sufficient?
something like
x = -10:0.1:10;
f1 = trapmf(x,[-2 0 0 2]);
for x = -10:0.1:10;
f1 = trapmf(x,[-2 0 0 2])
index=find(abs(f1-0.5)<10^(-10))
Xidx=x(index)
end
I'm curious how you got the f1-0.5 < 10^-10 part.,
thanks

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by