Overview
Comment: | Added structure (_struc) files. Fixed prob with dvi2ps conversion -- removed .doc extension. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e879f3db7b5e629e4030b655ab689622 |
User & Date: | gawthrop@users.sourceforge.net on 1997-04-15 15:16:12 |
Other Links: | branch diff | manifest | tags |
Context
1997-04-16
| ||
09:46:01 | More informative copy message check-in: cee182e30a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-04-15
| ||
15:16:12 |
Added structure (_struc) files. Fixed prob with dvi2ps conversion -- removed .doc extension. check-in: e879f3db7b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:18:49 | Uses supertabular package check-in: 259ff48827 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [cd55317663] to [1d22286c9a].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ # Revision 1.63 1997/03/22 17:09:11 peterg # Fixed bug in recursive cr.txt generation. # Fixed bug in recursive sympar.txt generation. # # Revision 1.62 1997/03/20 17:48:50 peterg # Better _input.c file default. # | > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ # Revision 1.64 1997/04/09 09:26:44 peterg # Added crcopy feature to pull crs from library -- similar to copy # feature. # # Revision 1.63 1997/03/22 17:09:11 peterg # Fixed bug in recursive cr.txt generation. # Fixed bug in recursive sympar.txt generation. # # Revision 1.62 1997/03/20 17:48:50 peterg # Better _input.c file default. # |
︙ | ︙ | |||
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 | #SUMMARY cbg causal bond graph (fig) #Causal bond graph: mfile to fig conversion $1_cbg.fig: $1_cbg.m $1_rbg.m $1_fig.fig $1_type.sh cbg_m2fig $1 #SUMMARY ese elementary system equations (r) #SUMMARY def definitions - system orders etc. (r) #Elementary system equations + definitions $1_ese.r: $1_cbg.m cbg2ese_m2r $1 $1_def.r: $1_ese.r touch $1_def.r $1_def.m: $1_def.r def_r2m $1; matlab_tidy $1_def.m; #SUMMARY dae differential-algebraic equations (r) #SUMMARY dae differential-algebraic equations (m) #SUMMARY dae differential-algebraic equations (tex) #SUMMARY dae differential-algebraic equations (view) | > > > > > > > | 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 | #SUMMARY cbg causal bond graph (fig) #Causal bond graph: mfile to fig conversion $1_cbg.fig: $1_cbg.m $1_rbg.m $1_fig.fig $1_type.sh cbg_m2fig $1 #SUMMARY ese elementary system equations (r) #SUMMARY def definitions - system orders etc. (r) #SUMMARY struc structure - list of inputs, outputs and states (txt) #SUMMARY struc structure - list of inputs, outputs and states (tex) #SUMMARY struc structure - list of inputs, outputs and states (view) #Elementary system equations + definitions $1_ese.r: $1_cbg.m cbg2ese_m2r $1 $1_def.r: $1_ese.r touch $1_def.r $1_struc.txt: $1_ese.r touch $1_struc.txt $1_struc.tex: $1_struc.txt struc_txt2tex $1 $1_def.m: $1_def.r def_r2m $1; matlab_tidy $1_def.m; #SUMMARY dae differential-algebraic equations (r) #SUMMARY dae differential-algebraic equations (m) #SUMMARY dae differential-algebraic equations (tex) #SUMMARY dae differential-algebraic equations (view) |
︙ | ︙ | |||
1024 1025 1026 1027 1028 1029 1030 | #Create PostScript version of dat file $1_$2.ps: $1_$2.gdat gdat2ps $1_$2 '$ARGS' endif ifeq ($REPTYPE,tex) #Create PostScript version of dvi file | | | | 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 | #Create PostScript version of dat file $1_$2.ps: $1_$2.gdat gdat2ps $1_$2 '$ARGS' endif ifeq ($REPTYPE,tex) #Create PostScript version of dvi file $1_$2.ps: $1_$2.dvi echo Creating $1_$2.ps dvips -o $1_$2.ps $1_$2 endif ifeq ($REPTYPE,tex) #Create html version of dvi file $1_$2.html: $1_$2.dvi $1_$2.doc echo Creating $1_$2/$1_$2.html latex2html $1_$2.doc |
︙ | ︙ |