diff options
Diffstat (limited to '3812/CH1/EX1.15.a/1_15_a.sce')
-rw-r--r-- | 3812/CH1/EX1.15.a/1_15_a.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3812/CH1/EX1.15.a/1_15_a.sce b/3812/CH1/EX1.15.a/1_15_a.sce new file mode 100644 index 000000000..c5c7892ba --- /dev/null +++ b/3812/CH1/EX1.15.a/1_15_a.sce @@ -0,0 +1,8 @@ +//Example 1.15<a>
+// Find wheather the following signal is periodic or not x3(n)=2*e^(%i*(t+%pi/4))
+clc;
+t=-21:21;
+x=2*exp(%i*(t+%pi/4));
+f=1/(2*%pi);
+N=1/f;
+disp('samples',N,'(b)the given signal is not periodic');
|