blob: 40072643a8d1eb0bf0046cf45746c6f19805a9f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Ex 3.11
//MAXIMA SCILAB TOOLBOX REQUIRED FOR THIS PROGRAM
clear;
clc ;
close ;
syms n;
a=0.5; //assume constant value
x =(a)^n;
X1= symsum (x,n ,0, %inf );
a=2; //assume constant value
X2= symsum (x,n ,0, %inf );
if (X1<=%inf)
disp('Hence Summation < infinity. Given System is Stable for |a| < 1');
elseif (X2<=%inf)
disp('Hence Summation < infinity. Given System is Stable for |a| > 1');
end
|