summaryrefslogtreecommitdiff
path: root/830/CH2/EX2.01.09/Exp_Inc.sce
blob: 93c60d13f3d088bb3ec366df1e21e5bb9e192bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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]');