blob: ab38fa25e29ee230d6aef4e1cb5041aff17e523e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Chapter 1
//Output signal
//page 19
//Example no 1-11
//Given
clc;
clear;
Vin=-42; // in dBV
Av=35; //in dBV
Vout=Vin+Av;
printf("\n The output signal is %.0f dBV \n",Vout);// Result
|