How to find the saturation point x value
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Abhishek Singh
il 4 Mag 2020
Commentato: Abhishek Singh
il 11 Mag 2020
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 Commenti
Guillaume
il 4 Mag 2020
I think first you have to tell us what is your definition of 'saturation point'.
Risposta accettata
David Hill
il 4 Mag 2020
a=abs(diff(y));
xvalSat=x(find(a<1e-5,1));%whatever tolerance you want here (1e-5 or less)
5 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!