diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /992/CH3/EX3.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '992/CH3/EX3.10')
-rwxr-xr-x | 992/CH3/EX3.10/Ex3_10.sce | 15 | ||||
-rwxr-xr-x | 992/CH3/EX3.10/ex3_10.txt | 15 | ||||
-rwxr-xr-x | 992/CH3/EX3.10/ex3_10ans.txt | 5 |
3 files changed, 35 insertions, 0 deletions
diff --git a/992/CH3/EX3.10/Ex3_10.sce b/992/CH3/EX3.10/Ex3_10.sce new file mode 100755 index 000000000..6caa12423 --- /dev/null +++ b/992/CH3/EX3.10/Ex3_10.sce @@ -0,0 +1,15 @@ +
+//Exa:3.10
+clc;
+clear;
+close;
+//Given:
+mf=1.0;
+Jo=0.77;
+//According the bessels Function table
+j1=0.44;
+j2=0.11;
+j3=0.02;
+printf("\n Firstsideband pairs :J1 = %f",j1);
+printf("\n Secondsideband pairs :J2 = %f",j2);
+printf("\n Thirdsideband pairs :J3 = %f",j3);
\ No newline at end of file diff --git a/992/CH3/EX3.10/ex3_10.txt b/992/CH3/EX3.10/ex3_10.txt new file mode 100755 index 000000000..bbc0d2e7c --- /dev/null +++ b/992/CH3/EX3.10/ex3_10.txt @@ -0,0 +1,15 @@ +//Caption:Program to determine realtive amplitude of each sideband.
+//Exa:3.10
+clc;
+clear;
+close;
+//Given:
+mf=1.0;
+Jo=0.77;
+//According the bessels Function table
+j1=0.44;
+j2=0.11;
+j3=0.02;
+printf("\n Firstsideband pairs :J1 = %f",j1);
+printf("\n Secondsideband pairs :J2 = %f",j2);
+printf("\n Thirdsideband pairs :J3 = %f",j3);
\ No newline at end of file diff --git a/992/CH3/EX3.10/ex3_10ans.txt b/992/CH3/EX3.10/ex3_10ans.txt new file mode 100755 index 000000000..135ba6664 --- /dev/null +++ b/992/CH3/EX3.10/ex3_10ans.txt @@ -0,0 +1,5 @@ +
+ Firstsideband pairs :J1 = 0.440000
+ Secondsideband pairs :J2 = 0.110000
+ Thirdsideband pairs :J3 = 0.020000
+ Execution done.
\ No newline at end of file |