blob: 4c958d2640e54e70846a29732a3593512282d1c6 (
plain)
1
2
3
4
5
6
7
8
|
//Example 7.1
clc;
Vertical_attenuation=0.5;
n=3; //No. of Division from CRO
//Peak to peak amplitude of the signal
Vp_p=Vertical_attenuation*n;
printf('\nPeak to peak amplitude of the signal is %.2f',Vp_p)
|