How do I get the turning point of a graph from discrete data points?

조회 수: 15 (최근 30일)
Tara Milne
Tara Milne 2015년 11월 5일
답변: Usha Duddu 2015년 11월 9일
I need to get the turning point of a C to V graph which was plotted on matlab with discrete data points (so I have a column vectors C and V and plotted C V)how would I do this?

답변 (1개)

Usha Duddu
Usha Duddu 2015년 11월 9일
Hi Tara
I understand that you would like to find turning point of the curve formed using discrete data points in MATLAB. I am assuming by turning point you mean maxima of the plot. In order to achieve this, you could use "findpeaks" function of Signal Processing Toolbox.
Another idea would be to set a tolerance level, find an approximate derivative of vectors using "diff" command and find turning points whose derivative is less than set tolerance level and remove the duplicate values if any. Below is the sample code snippet
>>tol=1e-3;
>>dy=diff(x);
>>x_peaks=find(abs(dy<tol));
>>unique(x_peaks);

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by