Overview
Comment: | Generates parameter coefficients for ppp optimisation. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e2f2985b7a3e7ad6ad3dd48cb591eeb2 |
User & Date: | gawthrop@users.sourceforge.net on 2002-05-02 09:43:39 |
Other Links: | branch diff | manifest | tags |
Context
2002-05-02
| ||
11:03:46 | Reinstated -liboctinterp and -lncurses; needed by xleftdiv. check-in: 8ea8c2e079 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
09:43:39 | Generates parameter coefficients for ppp optimisation. check-in: e2f2985b7a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:30:22 | _ssim.m now returns t as 4th arg check-in: 35c0c04449 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/control/PPP/ppp_ippp.m version [5bf17145e3].
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | function i_ppp = ppp_ippp (n_ppp,sympar,sympars) ## usage: i_ppp = ppp_ippp (n_ppp,sympar,sympars) ## nppp number of ppp parameters ## sympar symbolic parameter structure for system ## sympar symbolic parameter structure for sensitivity system ## Returns a matrix i_ppp with n_ppp rows and 3 columns ## First col: index of ith ppp parameter of sensitivity system ## Second col: index of ith ppp sensitivity parameter of sensitivity system ## Third col : index of ith ppp sensitivity parameter of system ## Copyright (C) 2002 by Peter J. Gawthrop i_ppp = []; for i=1:n_ppp i_ppp_i = eval(sprintf("[sympars.ppp_%i, sympars.ppp_%is \ sympar.ppp_%i];",i,i,i)); i_ppp = [i_ppp ; i_ppp_i]; endfor endfunction |