How to find the saturation point x value

조회 수: 27 (최근 30일)
Abhishek Singh
Abhishek Singh 2020년 5월 4일
댓글: Abhishek Singh 2020년 5월 11일
I have two graphs for which I am trying to find the value at x when the y meets the saturation point. In one of those graph which is strictly non decreasing I can use findpeaks() and it gives me the satisfactory solution but that is also not helping because maybe the point is yet beyond the x-axis limit I have given (nopeakgraph attached). But the another graph has a peak point after which it starts decreasing only to get its saturation point later so findpeaks() is showing me result but that is of no use to me (peakgraph attached).
Please let me know if there is a function or a way we can find the x axis values as soon as y hits the saturation point which is when the slope becomes 0. I need to compare both the graphs as one of the graph hits saturation earlier than the other. Thanks in advance.
  댓글 수: 2
Guillaume
Guillaume 2020년 5월 4일
I think first you have to tell us what is your definition of 'saturation point'.
Abhishek Singh
Abhishek Singh 2020년 5월 4일
@guillaume Yes, sorry edited the question. I basically want to find when the slope becomes 0

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

채택된 답변

David Hill
David Hill 2020년 5월 4일
a=abs(diff(y));
xvalSat=x(find(a<1e-5,1));%whatever tolerance you want here (1e-5 or less)
  댓글 수: 5
Abhishek Singh
Abhishek Singh 2020년 5월 5일
편집: Abhishek Singh 2020년 5월 5일
Hi @David, I am sorry I quite didn't get it. Is your a and x the same variables used in the main code or are they different variables here? I guess they are the same. But what is tol? Is it something like giving a wide range of number. Because isn't a is our tolerance which is almost close to 0 and hence we can not use it in this last code you have mentioned.
Abhishek Singh
Abhishek Singh 2020년 5월 11일
@Hi David, did I confuse you further? I was not getting if you used a as a new variable because my a was the tolerance so how are you suggesting me to use it for tot and tot is random? Like I can take 20k for tot? Please help me if you could. :)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by