From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 830/CH2/EX2.01.09/Exp_Inc.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 830/CH2/EX2.01.09/Exp_Inc.sce (limited to '830/CH2/EX2.01.09/Exp_Inc.sce') diff --git a/830/CH2/EX2.01.09/Exp_Inc.sce b/830/CH2/EX2.01.09/Exp_Inc.sce new file mode 100755 index 000000000..93c60d13f --- /dev/null +++ b/830/CH2/EX2.01.09/Exp_Inc.sce @@ -0,0 +1,17 @@ +//Graphical// +//Implementation of Equation 2.01.09b in Chapter 2 +//Digital Signal Processing by Proakis, Third Edition, PHI +//Page 46 +// a < 0 +clear; +clc; +close; +a =-1.5; +n = 0:10; +x = (a)^n; +a=gca(); +a.thickness = 2; +a.x_location = "origin"; +a.y_location = "origin"; +plot2d3('gnn',n,x) +xtitle('Graphical Representation of Exponential Increasing-Decreasing Signal','n','x[n]'); -- cgit