File:Periodogram windows.png

Original file(1,500 × 1,000 pixels, file size: 154 KB, MIME type: image/png)

Captions

Captions

The linear spectrum calculated by the periodogram method (rectangular and Hamming window functions).

Summary

edit
Description
English: Developed using scipy.signal.periodogram.
Date
Source Own work
Author Kirlf
Other versions
This file has been superseded by Periodogram windows.svg. It is recommended to use the other file. Please note that deleting superseded images requires consent.
new file
PNG development
InfoField
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

import numpy as np
from scipy import signal
import matplotlib.pyplot as plt

w_1 = 40 # frequency of the 1st component of the signal (Hz)
w_2 = 60 # frequency of the 2nd component of the signal (Hz)

a = 0.5 # magnitude of the 1st component of the signal
b = 1.0 # magnitude of the 2nd component of the signal

t = np.array([i for i in range(1,301)])/1000 # time samples (s)
fs = 1 / (t[1]-t[0]) # sampling frequency (Hz)

x = a*np.cos(2*np.pi*w_1*t) + b*np.sin(2*np.pi*w_2*t) # considered signal
n = .2*np.random.randn(len(t)) # white Gaussian noise
y = x + n

windows = [None,'hamming']
plt.subplots(1, 1, figsize=(6, 4), dpi=250)

for window in windows:
    if window == None:
        label = 'rect'
    else:
        label = window
    f, Pxx_den = signal.periodogram(y, fs=fs, scaling='spectrum', nfft=2048, window=window)
    plt.semilogy(f[1:200], Pxx_den[1:200], label=label)

plt.subplots(1, 1, figsize=(6, 4), dpi=250)
plt.ylabel('Spectrum')
plt.xlabel('Frequencies (Hz)')
plt.title('Periodogram')
plt.grid(True)
plt.show()

Licensing

edit
I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current06:22, 20 February 2019Thumbnail for version as of 06:22, 20 February 20191,500 × 1,000 (154 KB)Kirlf (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata