Overview
| Comment: | Made sure that mttui not declared twice |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8d4883ac067961c848f4c8e06a1c10e1 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-10-20 13:26:41.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-11-02
| ||
| 14:28:08 | and up to 10 ... check-in: 9d3e8b00a2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2000-10-20
| ||
| 13:26:41 | Made sure that mttui not declared twice check-in: 8d4883ac06 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 13:16:29 | Reformated check-in: 2acaa9fd32 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/makedef.m
from [4476d2dedc]
to [2448733046].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function makedef(structure,deffilenum); ## %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ## %% Version control history ## %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ## %% $Id$ ## %% $Log$ ## %% Revision 1.6 1996/12/07 18:21:57 peterg ## %% Now uses fopen + file number ## %% ## %% Revision 1.5 1996/11/09 21:05:44 peterg ## %% Only generates MTTIm when at least 2 states! ## %% ## %% Revision 1.4 1996/08/30 19:42:36 peter | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | function makedef(structure,deffilenum); ## %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ## %% Version control history ## %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ## %% $Id$ ## %% $Log$ ## %% Revision 1.7 2000/10/20 13:16:29 peterg ## %% Reformated ## %% ## %% Revision 1.6 1996/12/07 18:21:57 peterg ## %% Now uses fopen + file number ## %% ## %% Revision 1.5 1996/11/09 21:05:44 peterg ## %% Only generates MTTIm when at least 2 states! ## %% ## %% Revision 1.4 1996/08/30 19:42:36 peter |
| ︙ | ︙ | |||
62 63 64 65 66 67 68 |
if outputs>0
fprintf(deffilenum, 'matrix MTTy(%1.0f,1);\n', outputs);
endif
if zero_outputs>0
fprintf(deffilenum, 'matrix MTTyz(%1.0f,1);\n', zero_outputs);
fprintf(deffilenum, 'matrix MTTui(%1.0f,1);\n', zero_outputs);
| < < | | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
if outputs>0
fprintf(deffilenum, 'matrix MTTy(%1.0f,1);\n', outputs);
endif
if zero_outputs>0
fprintf(deffilenum, 'matrix MTTyz(%1.0f,1);\n', zero_outputs);
fprintf(deffilenum, 'matrix MTTui(%1.0f,1);\n', zero_outputs);
elseif internal_inputs>0
fprintf(deffilenum, 'matrix MTTui(%1.0f,1);\n', inputs);
endif
if connecting_inputs>0
fprintf(deffilenum, 'matrix MTTuc(%1.0f,1);\n', connecting_inputs);
endif
|
| ︙ | ︙ |