To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

File:GMSK PSD.png

From Wikipedia, the free encyclopedia

Original file(2,100 × 1,200 pixels, file size: 219 KB, MIME type: image/png)

Summary

Description
Power Spectral Densities of the MSK and GMSK. Edit this at Structured Data on Commons
Date
Source Own work
Author Kirlf
PNG development
InfoField
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

import numpy as np
import matplotlib.pyplot as plt

def normal(x):
    for idx, item in enumerate(x):
        if item < -100:
            x[idx] = None
    return x

f = np.array([i for i in range(-300, 300, 1)])/100
msk  = (16 / (np.pi**2) )\
                  * (np.cos(6.2832 * f))**2 / (1 - 16 * f**2)**2

BT = [0.3, 0.5]
gmsk = []

for W in BT:
    H_G = np.exp((np.log(2)/(-2.))*(f/W)**2)
    gmsk.append(normal(10*np.log10(msk*H_G)))

msk = normal(10*np.log10(msk))

plt.figure(figsize=(7, 4), dpi=300)
plt.plot(f, msk, label='MSK', color='green')
plt.plot(f, gmsk[1], label='GMSK BT = 0.5', color='red')
plt.plot(f, gmsk[0], label='GMSK BT = 0.3', color='black')
plt.title("Normalized Power Spectral Density")
plt.xlabel('Frequency Offset / Bit Rate (Hz/bit/s)')
plt.ylabel('Spectral Power Level (dB)')
plt.legend()
plt.grid()
plt.savefig('PSD.png')

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
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.

Captions

Power Spectral Densities of the MSK and GMSK.

Items portrayed in this file

depicts

7 February 2019

File history

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

Date/TimeThumbnailDimensionsUserComment
current13:02, 7 February 2019Thumbnail for version as of 13:02, 7 February 20192,100 × 1,200 (219 KB)KirlfUser created page with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata

Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.