Overview
Comment: | Reresentation for system identification for ppp |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
34531ed4024642b9f18152bbbea0ddb3 |
User & Date: | gawthrop@users.sourceforge.net on 2001-04-04 10:05:38 |
Other Links: | branch diff | manifest | tags |
Context
2001-04-04
| ||
10:06:49 | New ssim (sensitiveity simulation) rep check-in: 7d66f352c3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:05:38 | Reresentation for system identification for ppp check-in: 34531ed402 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:36:25 |
Restuctured to be more logical. Data is now in columns to be compatible with MTT. check-in: 0ea7b213e7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/rep/ippp_rep.make version [45548e5693].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 | # -*-makefile-*- # Makefile for representation ippp - ppp system identification # File ippp_rep.make ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### #Copyright (C) 2000 by Peter J. Gawthrop all: $(SYS)_ippp.$(LANG) $(SYS)_ippp.view: $(SYS)_parameters.pdf $(SYS)_error.pdf $(SYS)_outputs.pdf ( cd MTT_work; acroread *.pdf ) $(SYS)_parameters.pdf: s$(SYS)_ode2odes.oct s$(SYS)_ssim.m $(SYS)_ippp.m s$(SYS)_sympar.m s$(SYS)_simpar.m (cd MTT_work; octave $(SYS)_ippp.m) $(SYS)_error.pdf: $(SYS)_parameters.pdf (cd MTT_work; touch $(SYS)_error.pdf) $(SYS)_outputs.pdf: $(SYS)_parameters.pdf (cd MTT_work; touch $(SYS)_outputs.pdf) ## Note when a proper input.cc for stdin is available, change to ## mtt -q -stdin -s s$(SYS) ode2odes oct s$(SYS)_ode2odes.oct: echo Starting creation of s$(SYS)_ode2odes.oct '....' mtt -q -s s$(SYS) ode2odes oct; (cd MTT_work; make_stdin s$(SYS) m) s$(SYS)_ssim.m: mtt -q -s s$(SYS) ssim m s$(SYS)_sympar.m: mtt -q -s s$(SYS) sympar m s$(SYS)_simpar.m: mtt -q -s s$(SYS) simpar m |