Envelope detection in Matlab -


I am trying to get an envelope for a measured spectrum.

I used the hilbert function in MATLAB which I wrote for a dummy function,

but it does not give the right result for my spectrum is. (I got the right curve back).

I am thinking that the oscillation of my spectrum is very fast, but it is not certain about this.

Hope someone can tell me what is wrong here.

  A = xlsread ('test.xls'); Y = one (,, 2); H1 = imag (Hilbert (y)); E = sqrt (y ^ 2 + h1 ^ 2 ..);  


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -