Artifact 35a8da1aa8fb52147504d297c74622ac09175e44a5684e3b250478e914ba875d:
- Executable file mttroot/mtt/bin/trans/m/dm2ir.m — part of check-in [67560661e3] at 1996-08-10 10:26:00 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 434) [annotate] [blame] [check-ins using]
function [t,ir] = dm2ir(A,B,C,D,E,tmax,tstep); % Descriptor matrix to impulse response. % NB At the moment - this assumes that E is unity ..... % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% t=[0:tstep:tmax]'; ir = C*exp(A*t)*B;