derivative of speech signal

how to find derivative of a speech signal in matlab

3 Comments

plz someone help me...is der a fn to find the derivative of a speech signal in matlab.?
Hi do you mean 'diff()' function ?
An answer might depend on what "derivative" exactly means here. Perhaps you are searching for the gradient command?

Sign in to comment.

Answers (1)

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 Simulation, Tuning, and Visualization in Help Center and File Exchange

Tags

Asked:

on 29 Apr 2013

Community Treasure Hunt

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

Start Hunting!