MATLAB PROGRAMS | Miscellaneous › Others › MATLAB PROGRAMS This topic has 1 reply, 2 voices, and was last updated 10 years, 9 months ago by Abdul Basit. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts February 26, 2012 at 1:21 pm #1629 RafiParticipant 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; December 18, 2012 at 7:33 am #8844 Abdul BasitParticipant ‘Machine Learning Based Sign Recognition System’ , if any body have code in matlab , please share… Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In