Overview
Comment: | Parameterised _sm |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fb2d254baada42e284da20a641db2d42 |
User & Date: | gawthrop@users.sourceforge.net on 2000-05-21 06:39:23 |
Other Links: | branch diff | manifest | tags |
Context
2000-05-21
| ||
17:55:15 | New rep path check-in: ac6881c175 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
06:39:23 | Parameterised _sm check-in: fb2d254baa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-05-20
| ||
17:44:47 | Initial revision check-in: 6df6f78b0b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/examples/Control/PPP/Nonlinear/rcPPP/rcPPP_nppp.m from [e97dbc7530] to [ff69cee0ce].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | + + + | ## Figures.m ## Makes figures for the rc_PPP exasmple. ## $Log$ ## Revision 1.1 2000/05/19 13:15:38 peterg ## Initial revision ## ## Revision 1.2 2000/05/17 17:02:58 peterg ## Fixed documentation ## ## Revision 1.1 2000/05/17 09:14:37 peterg ## Initial revision ## system_name = "rcPPP"; |
︙ | |||
33 34 35 36 37 38 39 | 36 37 38 39 40 41 42 43 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 93 94 95 96 97 98 99 100 | - + - + + + - + + | tick=time; [y,x] = rcPPP_sim(x_0,u,t_s1,par); Elapsed = time-tick plot(t_s1,y,t_s1,x); ## Sensitivity system simulation parameters x_0s = srcPPP_state; |
︙ | |||
121 122 123 124 125 126 127 | 127 128 129 130 131 132 133 134 135 | - + | title(""); gset grid; xlabel "Time (sec)" ty_c = [t' y_c'] ; ty_l = [t' y_l'] ; ty = [t' y'] ; tu = [t' u']; gplot ty_c title "Continuation", ty_l title "Linear", ty title "Optimisation" |