Overview
Comment: | Sorted out [] problem with vector ports -- new octave function split_port |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b6d745a6656a5fd3c6c247fdb0350e45 |
User & Date: | gawthrop@users.sourceforge.net on 1998-04-16 14:07:51 |
Other Links: | branch diff | manifest | tags |
Context
1998-04-16
| ||
14:08:00 | Initial revision check-in: 6f63f9f6bf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:07:51 |
Sorted out [] problem with vector ports -- new octave function split_port check-in: b6d745a665 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:18:13 |
Now ignores spurious ports (in lbl but not Figure \ref{) but gives warning check-in: 4ed150ca37 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/rbg2abg.m from [fee4395e24] to [93303fe713].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + + + | function [bonds,components] = rbg2abg(name,rbonds,rstrokes,rcomponents,port_coord,port_name,infofile) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.25 1998/04/12 15:01:04 peterg % %% Converted to uniform port notation - always use [] % %% % %% Revision 1.24 1998/02/19 08:57:16 peterg % %% Fixed mtt-info bug -- confused filename with number % %% % %% Revision 1.23 1997/12/04 14:24:22 peterg % %% Removed error message about through-pointing arrows % %% % %% Revision 1.22 1997/09/18 19:49:37 peterg |
︙ | |||
253 254 255 256 257 258 259 | 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 | - + - - + - | [n_bonds,junk] = size(bonds); n_exp_ports=n_ports; exp_port_name=""; exp_port_bond = []; %exp_comps = []; for i=1:n_ports port_name_i = port_name(i,:) |
︙ |