diff options
Diffstat (limited to '3838/CH2/EX2.3.C')
-rw-r--r-- | 3838/CH2/EX2.3.C/EX2_3_c.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3838/CH2/EX2.3.C/EX2_3_c.sce b/3838/CH2/EX2.3.C/EX2_3_c.sce new file mode 100644 index 000000000..77d02850c --- /dev/null +++ b/3838/CH2/EX2.3.C/EX2_3_c.sce @@ -0,0 +1,12 @@ +clc;
+t=-12:0.01:12
+x=sin(2*t)+cos(t)+0.5*(sin(3*t)-sin(t))
+h=-sin(2*t)+cos(t)-0.5*(sin(3*t)-sin(t))
+e=cos(t)//(x+h)/2
+o=(x-h)/2//sin(t)+0.5*(sin(3*t)-sin(t))
+subplot(3,1,1)
+plot(t,e)
+xtitle('even signal')
+subplot(3,1,2)
+plot(t,o)
+xtitle('odd signal')
|