Overview
| Comment: | _ssim.m now returns t as 4th arg |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
722746ca4b881079647940f348b7da9a |
| User & Date: | gawthrop@users.sourceforge.net on 2002-05-02 09:30:22.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-05-02
| ||
| 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 | |
| 09:19:40 | replaced by cxxsim_rep.make check-in: be1568ff45 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/make_ssim
from [8d96ecb705]
to [68e9b7c313].
| ︙ | ︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
if (i==index(1))
y = mtt_data(:,2:2:1+ny2);
endif
y_par = [y_par, mtt_data(:,3:2:2+ny2)];
x = mtt_data(:,3+ny2:2+ny2+nx2);
endfor
endif
endfunction
EOF
}
case ${lang} in
| > > > > > > | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
if (i==index(1))
y = mtt_data(:,2:2:1+ny2);
endif
y_par = [y_par, mtt_data(:,3:2:2+ny2)];
x = mtt_data(:,3+ny2:2+ny2+nx2);
endfor
endif
if nargout>3
## Create time vector
[N,M] = size(y);
t = simpar.dt*[0:N-1]';
endif;
endfunction
EOF
}
case ${lang} in
|
| ︙ | ︙ |
Modified mttroot/mtt/bin/trans/mtt_header
from [c82b78366b]
to [60273694d1].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.43 2002/04/30 23:27:00 geraint ## Replaced octave_map with columnvector in simpar.cc. Not quite as descriptive but ## standardises the interfaces somewhat and reduces the dependency on liboctinterp ## (and thus libreadline, libkpathsea, libncurses, etc). ## ## Revision 1.42 2002/04/28 18:41:27 geraint ## Fixed [ 549658 ] awk should be gawk. | > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.44 2002/05/01 17:30:56 geraint ## Improved pre-processor directives to better accommodate future alternatives (matlab) ## if necessary. ## ## Revision 1.43 2002/04/30 23:27:00 geraint ## Replaced octave_map with columnvector in simpar.cc. Not quite as descriptive but ## standardises the interfaces somewhat and reduces the dependency on liboctinterp ## (and thus libreadline, libkpathsea, libncurses, etc). ## ## Revision 1.42 2002/04/28 18:41:27 geraint ## Fixed [ 549658 ] awk should be gawk. |
| ︙ | ︙ | |||
347 348 349 350 351 352 353 |
output='y,x,t'
args='x0,par,simpar,u'
;;
ssim)
states=no;
inputs=no;
parameters=no;
| | | 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
output='y,x,t'
args='x0,par,simpar,u'
;;
ssim)
states=no;
inputs=no;
parameters=no;
output='y,y_par,x,t'
args='x0,par,simpar,u,index'
;;
tf)
states=no;
inputs=no;
parameters=yes;
output='mttnum,mttden'
|
| ︙ | ︙ |