Astable Multivibrator Multivibrator circuit using a pair of transistors

schematic

Schematic

screenshot

Screenshot

photo

Photograph

Sine wave plot example


from pylab import *
import numpy as np
x=np.linspace(0,2*np.pi,100)
plot(x,np.sine(x))
show()