Overview
Comment: | Renamed matrix to cTF; |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2dc95de56ce77765f9d65840ac894961 |
User & Date: | gawthrop@users.sourceforge.net on 1998-02-09 14:04:00 |
Other Links: | branch diff | manifest | tags |
Context
1998-02-09
| ||
14:11:08 | Added ctf --> D(s) check-in: 966d19ceed user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:04:00 | Renamed matrix to cTF; check-in: 2dc95de56c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:54:34 | Initial revision check-in: 30f2e5613b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/ssk2ctf_r from [d3b74537bb] to [4f78fae1a2].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo Creating $1_ctf.r # Remove the old log file | > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1998/02/09 13:54:34 peterg ## Initial revision ## ############################################################### # Inform user echo Creating $1_ctf.r # Remove the old log file |
︙ | ︙ | |||
49 50 51 52 53 54 55 | MTTGc := C_d*((s*MTTI - A_d)^(-1))*B_d; %Create the output file OUT "$1_ctf.r"; %Write out the matrices. write "% - Compensator TF"; | | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | MTTGc := C_d*((s*MTTI - A_d)^(-1))*B_d; %Create the output file OUT "$1_ctf.r"; %Write out the matrices. write "% - Compensator TF"; MTT_Matrix := MTTcTF$ MTT_Matrix_name := "MTTcTF"$ MTT_Matrix_n := MTTNu$ MTT_Matrix_m := MTTNy$ Reduce_Matrix()$ SHUT "$1_ctf.r"; quit; EOF # Now invoke the standard error handling. mtt_error_r ssk2ctf_r.log |