How can I do to analyze a curve from scope
이전 댓글 표시
I need to calculate the exact inflexion point of my curve from the scope on simulink.
How can I do that?
this is my curve:
Thanks
답변 (3개)
Walter Roberson
2012년 1월 12일
0 개 추천
You cannot calculate the exact inflection point. Calculating the exact inflection point would require either knowing the generating equations exactly, or require an infinite number of data points.
Remember, "inflection point" is an idea in the mind of The Calculus, and The Calculus is woeful and wrath about being misused for situations that are not continuous.
You could calculate approximate derivatives and use that to find points that are adjacent to an inflection point, but you cannot locate the exact inflection point.
Walter Roberson
2012년 1월 13일
I do not know what you would have to do in order to get access to the graph from Simulink. At the MATLAB level, once you have the figure handle you can find the axes handle, and from there, find the line or lineseries object; and then you can get() the XData and YData properties of the line.
After that, the first approximate numeric derivative is
approxFirst = diff(Y) ./ diff(X);
카테고리
도움말 센터 및 File Exchange에서 Linear Model Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!