Chapter 7 oscilloscope

Example 7.1 Page no 222

In [4]:
#Given
V=0.5                               #Volts
n=3

#Calculation
V1=V*n

#Result
print"Peak to peak amplitude of the signal is ", V1,"Vp-p"
Peak to peak amplitude of the signal is  1.5 Vp-p

Example 7.2 Page no 223

In [8]:
#Given
t=2*10**-6                           #s
n=4

#Calculation
T=t*n
f=(1/T)*10**-3

#Result
print"Frequency of the signal is ", f,"KHz"
Frequency of the signal is  125.0 KHz