11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
% structure,eqnfile);
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.2 1996/09/11 13:35:14 peter
% %% New equation.m method used.
% %%
% %% Revision 1.1 1996/08/30 18:38:57 peter
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
% structure,eqnfile);
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.3 1996/09/12 19:29:35 peter
% %% Use new equation method.
% %%
% %% Revision 1.2 1996/09/11 13:35:14 peter
% %% New equation.m method used.
% %%
% %% Revision 1.1 1996/08/30 18:38:57 peter
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
outbond = bond_number(1);
inbond = bond_number(2);
outport = 1;
inport = 2;
end
eqn = equation(name,cr,args,outbond,outcause,outport, ...
inbond,incause,inport);
fprintf(eqnfile, '%s',eqn);
|
|
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
outbond = bond_number(1);
inbond = bond_number(2);
outport = 1;
inport = 2;
end
eqn = equation("AF",name,cr,args,outbond,outcause,outport, ...
inbond,incause,inport);
fprintf(eqnfile, '%s',eqn);
|