What is the formula for the peak envelope created in MatLab?
7 ビュー (過去 30 日間)
古いコメントを表示
What is the original formula for the peak envelope created in MatLab?
envelope(a,b,'peak')
I don't know if it uses a Hilbert transform or not.
0 件のコメント
回答 (2 件)
Nikhil
2023 年 6 月 27 日
Hey Minoru,
You can get the reference from this page for peak envelope: https://in.mathworks.com/help/signal/ref/envelope.html .
Hope this will help you out.
Jacob Mathew
2023 年 6 月 27 日
Hi Minoru,
This is the link to the documentation of evelope function: https://in.mathworks.com/help/signal/ref/envelope.html
Under the Description Tab, it is mentioned as follows:
[yupper,ylower] = envelope(x)
Here the description mentions that it returns the upper and lower envelopes of the input sequence, x, as the magnitude of its analytic signal. The analytic signal of x is found using the discrete Fourier transform as implemented in hilbert. The function initially removes the mean of x and adds it back after computing the envelopes. If x is a matrix, then envelope operates independently over each column of x.
参考
カテゴリ
Help Center および File Exchange で Transforms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!