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: a9d1dfd6f87ead28f39e6d816d42f164c4aa367a06e0377893b062b258fcce84
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: 5208f666af user: geraint@users.sourceforge.net tags: origin/master, trunk
09:43:39
Generates parameter coefficients for ppp optimisation. check-in: a9d1dfd6f8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
09:30:22
_ssim.m now returns t as 4th arg check-in: 722746ca4b 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


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]