Mathematical formulation of periodogram built-in function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Vaishakh Krishnan
am 19 Mär. 2020
Beantwortet: Sai Veeramachaneni
am 23 Mär. 2020
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));
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spectral Measurements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!