필터 지우기
필터 지우기

Mathematical formulation of periodogram built-in function

조회 수: 1 (최근 30일)
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 CenterFile Exchange에서 Hamming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by