Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can I find out the solution of second derivative pick detection. I have already done 1st derivative pick detection now I want use the same method for 2nd derivatives..

조회 수: 1 (최근 30일)
My first derivative Pick detection code is given bellow:
clear;
clc;
t=-5:1/20:5;
ind1=zeros(1,length(t));
x=sin(2*pi*t)+cos(3*pi*t);
% x=sin(2*pi*t);
g=diff(x);
ind = find(g(1:end-1).*g(2:end) < 0)+1;
plot(t,x, t(ind), x(ind), 'o');
Now, I want to write second derivative pick direction by using above code.
The second derivative equation is
Y1(n) = [x(n)-2x(n-2)+x(n-4)]
Please, help me to write the code for Second derivative

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by