diff options
Diffstat (limited to '2528/CH1/EX1.1/Ex1_1.sce')
-rwxr-xr-x | 2528/CH1/EX1.1/Ex1_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2528/CH1/EX1.1/Ex1_1.sce b/2528/CH1/EX1.1/Ex1_1.sce new file mode 100755 index 000000000..941c988b9 --- /dev/null +++ b/2528/CH1/EX1.1/Ex1_1.sce @@ -0,0 +1,11 @@ +//Chapter 1
+//Decibel Power gain
+//page 14
+//Example no 1-1
+//Given
+clc;
+clear;
+G=800;
+G1=10*log10(G);
+printf("\n The decibel power gain,G= %.2f dB\n",G1); // Result
+
|