diff options
Diffstat (limited to '992/CH9/EX9.5')
-rwxr-xr-x | 992/CH9/EX9.5/Ex9_5.sce | 11 | ||||
-rwxr-xr-x | 992/CH9/EX9.5/ex9_5.txt | 11 | ||||
-rwxr-xr-x | 992/CH9/EX9.5/ex9_5ans.txt | 4 |
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.
|