derivative of speech signal

2 views (last 30 days)
Primi
Primi on 29 Apr 2013
how to find derivative of a speech signal in matlab
  3 Comments
Zhang lu
Zhang lu on 2 May 2013
Hi do you mean 'diff()' function ?
Jan
Jan on 2 May 2013
An answer might depend on what "derivative" exactly means here. Perhaps you are searching for the gradient command?

Sign in to comment.

Answers (1)

Youssef  Khmou
Youssef Khmou on 2 May 2013
hi, try :
load gong.mat;
dy=diff(y);
dy(end+1)=dy(end);
figure, plot(y), hold on, plot(dy,'r'), hold off

Categories

Find more on Signal Processing Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!