From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 992/CH3/EX3.1/EX3_1.sce | 19 +++++++++++++++++++ 992/CH3/EX3.1/ex3_1.txt | 19 +++++++++++++++++++ 992/CH3/EX3.1/ex3_1ans.txt | 5 +++++ 3 files changed, 43 insertions(+) create mode 100755 992/CH3/EX3.1/EX3_1.sce create mode 100755 992/CH3/EX3.1/ex3_1.txt create mode 100755 992/CH3/EX3.1/ex3_1ans.txt (limited to '992/CH3/EX3.1') diff --git a/992/CH3/EX3.1/EX3_1.sce b/992/CH3/EX3.1/EX3_1.sce new file mode 100755 index 000000000..293e9c306 --- /dev/null +++ b/992/CH3/EX3.1/EX3_1.sce @@ -0,0 +1,19 @@ + +//Exa:3.1 +clc; +clear; +close; +//Given: +w1=4.8;//in KHz +v1=2.4; +v2=7.2; +fm=0.5;//in KHz +w2=w1*v2/v1;//in KHz +v3=10; +w3=w1*v3/v1; +m1=w1/fm; +m2=w2/fm; +m3=w3/fm; +printf("\n 1)deviation = %f KHz and modulation index = %f",w1,m1); +printf("\n 2)deviation = %f KHz and modulation index = %f",w2,m2); +printf("\n 3)deviation = %f KHz and modulation index = %f",w3,m3); \ No newline at end of file diff --git a/992/CH3/EX3.1/ex3_1.txt b/992/CH3/EX3.1/ex3_1.txt new file mode 100755 index 000000000..f97eadf8c --- /dev/null +++ b/992/CH3/EX3.1/ex3_1.txt @@ -0,0 +1,19 @@ +//Caption:Program to calculate deviation and modulation index. +//Exa:3.1 +clc; +clear; +close; +//Given: +w1=4.8;//in KHz +v1=2.4; +v2=7.2; +fm=0.5;//in KHz +w2=w1*v2/v1;//in KHz +v3=10; +w3=w1*v3/v1; +m1=w1/fm; +m2=w2/fm; +m3=w3/fm; +printf("\n 1)deviation = %f KHz and modulation index = %f",w1,m1); +printf("\n 2)deviation = %f KHz and modulation index = %f",w2,m2); +printf("\n 3)deviation = %f KHz and modulation index = %f",w3,m3); \ No newline at end of file diff --git a/992/CH3/EX3.1/ex3_1ans.txt b/992/CH3/EX3.1/ex3_1ans.txt new file mode 100755 index 000000000..1e1ed4f4a --- /dev/null +++ b/992/CH3/EX3.1/ex3_1ans.txt @@ -0,0 +1,5 @@ + + 1)deviation = 4.800000 KHz and modulation index = 9.600000 + 2)deviation = 14.400000 KHz and modulation index = 28.800000 + 3)deviation = 20.000000 KHz and modulation index = 40.000000 + Execution done. \ No newline at end of file -- cgit