Below you will find pages that utilize the taxonomy term “Matplotlib”
Blog
AM Generation using Matplotlib Python
we can plot AM waves using matplotlib
It is the one of the most strongest tool in linux to plot the waves
import matplotlib.pylab as plt
import numpy as num
fc=50;
fm=5;
t=num.arange(0,1,0.001);
c=num.sin(2*num.pi*fc*t);
m=num.sin(2*num.pi*fm*t);
am=c*(2+m);
plt.plot(am,’r’)
plt.show()
{% img center /images/am.png 600 350 ‘image’ ‘images’ %}