Overview
Comment: | Added impulse and frequency response stuff. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
da50dc9881469c63467831283c3e9f82 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-10 14:13:47 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-10
| ||
14:15:03 | Initial revision check-in: 9ed98b5ae5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:13:47 | Added impulse and frequency response stuff. check-in: da50dc9881 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:12:48 | Revised to new dat format: [x y x y x y] in place of [x y y y]. check-in: 24e133d5ee user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [616a76e3bc] to [3f4b8b2a53].
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.3 1996/08/09 15:13:13 peter ## Generic viewing of any representation via ps files implemented. ## ## Revision 1.2 1996/08/05 19:50:55 peter ## Put in fig.fig target. ## ## Revision 1.1 1996/08/04 17:29:42 peter | > > > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.4 1996/08/10 09:19:48 peter ## Put in help, info and warranty stuff. ## ## Revision 1.3 1996/08/09 15:13:13 peter ## Generic viewing of any representation via ps files implemented. ## ## Revision 1.2 1996/08/05 19:50:55 peter ## Put in fig.fig target. ## ## Revision 1.1 1996/08/04 17:29:42 peter |
︙ | ︙ | |||
226 227 228 229 230 231 232 233 234 235 236 237 238 | $1_tf.r: $1_dm.r $1_sympar.r dm2tf_r $1; tidy $1_tf.r $1_tf.m: $1_def.r $1_tf.r tf_r2m $1; matlab_tidy $1_tf.m $1_tf.tex: $1_def.r $1_tf.r $1_sympar.r $1_simp.r tf_r2tex $1; latex_tidy $1_tf.tex #Partially-known system indentification structure matrices $1_pkim.r: $1_tf.r $1_sympar.r tf2pkim_r $1; tidy $1_pki.r $1_pkim.tex: $1_def.r $1_pkim.r $1_sympar.r pkim_r2tex $1; latex_tidy $1_pkim.tex | > > > > > > > > < > > > > > > > > > > > > > > > | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | $1_tf.r: $1_dm.r $1_sympar.r dm2tf_r $1; tidy $1_tf.r $1_tf.m: $1_def.r $1_tf.r tf_r2m $1; matlab_tidy $1_tf.m $1_tf.tex: $1_def.r $1_tf.r $1_sympar.r $1_simp.r tf_r2tex $1; latex_tidy $1_tf.tex #Time responses $1_ir.dat: $1_dm.m dm2ir_m2dat $1 #Frequency responses $1_fr.dat: $1_dm.m dm2fr_m2dat $1 #Partially-known system indentification structure matrices $1_pkim.r: $1_tf.r $1_sympar.r tf2pkim_r $1; tidy $1_pki.r $1_pkim.tex: $1_def.r $1_pkim.r $1_sympar.r pkim_r2tex $1; latex_tidy $1_pkim.tex #Generic conversion of Latex to latex document $1_$2.doc: $1_$2.tex showtex $1 $2 #Generic conversion of LaTeX doc to dvi $1_$2.dvi: $1_$2.doc echo Creating $1_$2.dvi latex $1_$2.doc > /dev/null #Create PostScript version of abg fig file ifeq ('$2','abg') $1_abg.ps: $1_abg.fig echo Creating $1_abg.ps fig2dev -Lps $1_abg.fig >$1_abg.ps endif #Create PostScript version of cbg fig file ifeq ('$2','cbg') $1_cbg.ps: $1_cbg.fig echo Creating $1_cbg.ps fig2dev -Lps $1_cbg.fig >$1_cbg.ps endif #Create PostScript version of dat file ifeq ('$2','ir') $1_$2.ps: $1_$2.dat dat2ps $1_$2 endif ifeq ('$2','fr') $1_$2.ps: $1_$2.dat dat2ps $1_$2 endif #Generic conversion of dvi to ps ifneq ('$2','abg') ifneq ('$2','cbg') ifneq ('$2','ir') ifneq ('$2','fr') $1_$2.ps: $1_$2.dvi echo Creating $1_$2.ps dvips -o $1_$2.ps $1_$2.dvi 2> /dev/null endif endif endif endif #View a ps file $1_$2.view: $1_$2.ps echo Creating view of $1_$2 ghostview $1_$2.ps& |
︙ | ︙ |