- This topic has 1 reply, 2 voices, and was last updated 12 years, 7 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
|
Miscellaneous › Others › MATLAB PROGRAMS
1.STABILITY OF A SYSTEM USING MATLAB
%program to find stabilty of a system%
clc;
clear all;
close all;
a=input(‘num’);
b=input(‘den’);
t=tf(a,b)
p=pole(t);
r=real(p);
if length(find(r>0))>0
disp(‘unstable’)
elseif length(find(p==0))>1
disp(‘unstable’)
elseif length(find(r==0))>0
disp(‘marginally stable’)
else
disp(‘stable’)
end;
‘Machine Learning Based Sign Recognition System’ , if any body have code in matlab , please share…