How to Integrate a vector?

31 views (last 30 days)
Fourier
Fourier on 30 Aug 2017
Commented: Star Strider on 21 Oct 2019
I have an audio file that gives me a long vector when I read it.I am asked to integrate the response over a specific time. My approach is to calculate time 'x' at which the vector reaches its 'ith'element. and then I will integrate it over the time. Can anyone guide

Accepted Answer

Star Strider
Star Strider on 30 Aug 2017
To integrate a vector, use the trapz (link) or cumtrapz (link) function, depending on the result you want.
You probably need to calculate a time vector as well. Since audio files are column-major matrices (each column is a different channel), this will work to calcualte the time vector, with ‘y’ being your sound file, and ‘Fs’ your sampling frequency:
tv = linspace(0, size(y,1), size(y,1))'/Fs;
  6 Comments
Peter Druzba
Peter Druzba on 20 Oct 2019
Thanks, very helpfully !
Star Strider
Star Strider on 21 Oct 2019
@Peter Druzba — My pleasure!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!