Overview
| Comment: | Changed name to FP from ES |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0c864405c8811810f4e96e8054d3e7ff |
| User & Date: | gawthrop@users.sourceforge.net on 1998-06-29 09:56:24.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-06-29
| ||
| 09:58:54 | Updated documentation check-in: de514a36e7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:56:24 | Changed name to FP from ES check-in: 0c864405c8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:56:03 | Changed name from ES to FP check-in: 8d3e80c89b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/FP_cause.m
from [945d9753c5]
to [3636e92144].
| ︙ | ︙ | |||
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 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.1 1997/09/04 08:34:53 peterg % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1997. status = -1; % Check that there are exactly two bonds. if check_bonds(bonds,2,'FP')==0 return end % Same causality as TF [bonds,status] = TF_cause(bonds); | > > > > | 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 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.1 1998/06/29 09:56:02 peterg % %% Initial revision % %% % %% Revision 1.1 1997/09/04 08:34:53 peterg % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1997. status = -1; % Check that there are exactly two bonds. if check_bonds(bonds,2,'FP')==0 return end % Same causality as TF [bonds,status] = TF_cause(bonds); |
Modified mttroot/mtt/lib/comp/simple/comp_ports.m
from [7500ce53df]
to [9b381605ee].
| ︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.4 1998/03/31 08:39:31 peterg % %% Added EBTF % %% % %% Revision 1.3 1997/11/21 11:32:57 peterg % %% N ports numbered 1..N % %% % %% Revision 1.2 1997/08/28 08:08:24 peterg | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.5 1998/04/12 15:01:53 peterg % %% Converted to uniform port notation - always use [] % %% % %% Revision 1.4 1998/03/31 08:39:31 peterg % %% Added EBTF % %% % %% Revision 1.3 1997/11/21 11:32:57 peterg % %% N ports numbered 1..N % %% % %% Revision 1.2 1997/08/28 08:08:24 peterg |
| ︙ | ︙ | |||
39 40 41 42 43 44 45 | ports = ['[undefined]']; elseif length(findstr(comp_type,one_ports))==1 ports = ['[in]']; elseif length(findstr(comp_type,two_ports))==1 ports = ['[in]';'[out]']; elseif length(findstr(comp_type,'[-EMTF-]'))==1 ports = ['[in]';'[out]';'[mod]']; | | | | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
ports = ['[undefined]'];
elseif length(findstr(comp_type,one_ports))==1
ports = ['[in]'];
elseif length(findstr(comp_type,two_ports))==1
ports = ['[in]';'[out]'];
elseif length(findstr(comp_type,'[-EMTF-]'))==1
ports = ['[in]';'[out]';'[mod]'];
elseif length(findstr(comp_type,'[-FP-]'))==1
ports = ['[e]';'[s]'];
elseif length(findstr(comp_type,'[-PS-]'))==1
ports = ['[in]';'[out]';'[power]'];
elseif length(findstr(comp_type,N_ports))==1
if N==1
ports = ['[in]'];
elseif N==2
ports = ['[in]';'[out]'];
elseif N>2
ports = '[1]';
for i=2:N
ports = [ports; sprintf("[%i]",i)];
end;
end;
end;
|