summaryrefslogtreecommitdiff
path: root/992/CH9/EX9.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /992/CH9/EX9.5
downloadScilab-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/CH9/EX9.5')
-rwxr-xr-x992/CH9/EX9.5/Ex9_5.sce11
-rwxr-xr-x992/CH9/EX9.5/ex9_5.txt11
-rwxr-xr-x992/CH9/EX9.5/ex9_5ans.txt4
3 files changed, 26 insertions, 0 deletions
diff --git a/992/CH9/EX9.5/Ex9_5.sce b/992/CH9/EX9.5/Ex9_5.sce
new file mode 100755
index 000000000..86b460e77
--- /dev/null
+++ b/992/CH9/EX9.5/Ex9_5.sce
@@ -0,0 +1,11 @@
+
+//Exa:9.5
+clc;
+clear;
+close;
+//Given:
+//v1(t)=10cos(2000*pi*t)+4sin(200*pi*t);
+//BPF=800Hz to 1200Hz
+printf("Since v2=v1+0.1*v1^2 and");
+printf("\n BPF=800Hz to 1200Hz ");
+printf("\n So,v3(t)=10*cos(2000*pi*t)+4*sin(2200*pi*t)-4*sin(1800*pi*t)"); \ No newline at end of file
diff --git a/992/CH9/EX9.5/ex9_5.txt b/992/CH9/EX9.5/ex9_5.txt
new file mode 100755
index 000000000..1cac432bc
--- /dev/null
+++ b/992/CH9/EX9.5/ex9_5.txt
@@ -0,0 +1,11 @@
+//Caption:Program to determine expression for signal.
+//Exa:9.5
+clc;
+clear;
+close;
+//Given:
+//v1(t)=10cos(2000*pi*t)+4sin(200*pi*t);
+//BPF=800Hz to 1200Hz
+printf("Since v2=v1+0.1*v1^2 and");
+printf("\n BPF=800Hz to 1200Hz ");
+printf("\n So,v3(t)=10*cos(2000*pi*t)+4*sin(2200*pi*t)-4*sin(1800*pi*t)"); \ No newline at end of file
diff --git a/992/CH9/EX9.5/ex9_5ans.txt b/992/CH9/EX9.5/ex9_5ans.txt
new file mode 100755
index 000000000..ac2f1decf
--- /dev/null
+++ b/992/CH9/EX9.5/ex9_5ans.txt
@@ -0,0 +1,4 @@
+ Since v2=v1+0.1*v1^2 and
+ BPF=800Hz to 1200Hz
+ So,v3(t)=10*cos(2000*pi*t)+4*sin(2200*pi*t)-4*sin(1800*pi*t)
+ Execution done.