Mathematical formulation of periodogram built-in function

1 回表示 (過去 30 日間)
Vaishakh Krishnan
Vaishakh Krishnan 2020 年 3 月 19 日
回答済み: Sai Veeramachaneni 2020 年 3 月 23 日
I used periodogram(data, hamming, [], freq) to generate autospectrum of a data. Where do I find the mathematical model of the above function - I would like to know the mathematical expressions used in the above calculations to write my research work.
The sample of my code is here where turbw is the data.
[pww, fww] = periodogram(turbw, hamming(length(turbw)), [],freq);
pww = smooth(pww);
sm1 = floor(length(fww)/20);
pww(1:sm1) = smooth(pww(1:sm1));
pww(sm1:end) = smooth(pww(sm1:end));

採用された回答

Sai Veeramachaneni
Sai Veeramachaneni 2020 年 3 月 23 日
You can find the required information here.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by