Overview
Comment: | Saved (quite old) version which integrates IR to give SR |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e67a236326010ab178cd4951ffceaac0 |
User & Date: | gawthrop@users.sourceforge.net on 1996-12-05 10:18:52 |
Other Links: | branch diff | manifest | tags |
Context
1996-12-05
| ||
10:38:36 |
Decided that integrating the IR is a bad idea. So now explicitly computes the SR using matrix exponential -- much more accurate. check-in: 5fd8598766 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:18:52 | Saved (quite old) version which integrates IR to give SR check-in: e67a236326 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:17:34 | Put in version control history. check-in: 532092897f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/sm2sr.m from [3cfd117635] to [aedb773097].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + + + + + + + - + + + | function [Y,X] = sm2sr(A,B,C,D,T,u0,x0); % sm2sr - Constrained-state matrix to step response. % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function sm2sr % [Y,X] = sm2sr(A,B,C,D,T,u0,x0); |
︙ | |||
35 36 37 38 39 40 41 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | if M>N T = T'; N = M; end; |