Overview
Comment: | Tests for null string with strcmp |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
819feffbe29c46ef7932929649750a86 |
User & Date: | gawthrop@users.sourceforge.net on 1996-12-07 21:34:52 |
Other Links: | branch diff | manifest | tags |
Context
1996-12-10
| ||
16:04:11 | Changed file handling on mtt_info. check-in: 84b3830d14 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-12-07
| ||
21:34:52 | Tests for null string with strcmp check-in: 819feffbe2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
21:33:52 | Changed _input file to give unit step on ALL inputs check-in: 98908c2fdd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/cbg2fig.m from [3d1ae6eab3] to [7021a58a40].
1 2 3 4 | 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 | - + - - - - - + + + + + - + + + + + + | function cbg2fig(system_name, ... system_type, full_name, ... stroke_length, stroke_thickness, stroke_colour, ... comp_font, comp_colour_u, comp_colour_o) |
︙ | |||
53 54 55 56 57 58 59 60 61 | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | + + + - + - - + + + - + | if nargin<8 comp_colour_u = 12; %Green end; if nargin<9 comp_colour_o = 4; %Red end; % Create a back slash '\' character. bs = setstr(92); % Create the (full) system name |
︙ | |||
183 184 185 186 187 188 189 | 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | - + | fig_params(6) = comp_font; end; %Now print the component in fig format eval(['[comp_type,comp_name] = ', system_type, '_cmp(i);']); |
︙ |