Overview
| Comment: | Tidied up the optimisation stuff |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2f9714d2b037ed3668d32080a0a06bab |
| User & Date: | gawthrop@users.sourceforge.net on 2001-08-10 16:19:06.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-08-10
| ||
| 16:20:43 | Fixed error and added test system check-in: 769c2129d2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 16:19:06 | Tidied up the optimisation stuff check-in: 2f9714d2b0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2001-08-09
| ||
| 03:09:23 | Fixed zeroing of initial guess of unknown inputs. check-in: 0d3835dbed user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/control/PPP/ppp_error.m version [3cf9868bce].
Modified mttroot/mtt/lib/control/PPP/ppp_identify.m
from [842e30c8e0]
to [fae8c72792].
| ︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + |
s_system_name = sprintf("s%s", system_name); # Name of sensitivity system
## Set up parameters
sim = eval([s_system_name, "_simpar;"]); # Simulation parameter
sym = eval([s_system_name, "_sympar;"]); # Parameter names
x0 = eval([s_system_name, "_state(par_0);"]); # Initial state
|
| ︙ |
Added mttroot/mtt/lib/control/PPP/ppp_indices.m version [83cf0feda3].
Modified mttroot/mtt/lib/control/PPP/ppp_optimise.m
from [1dce967d13]
to [87f475bb1d].
| ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | + + + | ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.6 2001/07/03 22:59:10 gawthrop ## Fixed problems with argument passing for CRs ## ## Revision 1.5 2001/06/06 07:54:38 gawthrop ## Further fixes to make nonlinear PPP work ... ## ## Revision 1.4 2001/05/26 15:46:38 gawthrop ## Updated to account for new nonlinear ppp ## ## Revision 1.3 2001/04/05 11:50:12 gawthrop |
| ︙ | |||
112 113 114 115 116 117 118 | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | - - + + |
endif
## Use the last part of the simulation to compare with data
y = y(1+N_data-n_data:N_data,:);
y_par = y_par(1+N_data-n_data:N_data,:);
if extras.verbose # Diagnostics
|
| ︙ |