diff options
Diffstat (limited to '830/CH2/EX2.1.9/Exp.sce')
-rwxr-xr-x | 830/CH2/EX2.1.9/Exp.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/830/CH2/EX2.1.9/Exp.sce b/830/CH2/EX2.1.9/Exp.sce new file mode 100755 index 000000000..86473466c --- /dev/null +++ b/830/CH2/EX2.1.9/Exp.sce @@ -0,0 +1,14 @@ +//Graphical//
+//Implementation of Equation 2.1.9 in Chapter 2
+//Digital Signal Processing by Proakis, Third Edition, PHI
+//Page 46
+clear;
+clc;
+close;
+a =1.5;
+n =1:10;
+x = (a)^n;
+a=gca();
+a.thickness = 2;
+plot2d3('gnn',n,x)
+xtitle('Graphical Representation of Exponential Signal','n','x[n]');
|