Overview
| Comment: | Replaced continuation character in lib m files, except PPP and Control |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
fa2f8429aa8fecd08d3d8ea7e78f6ae6 |
| User & Date: | geraint@users.sourceforge.net on 2014-08-02 16:36:14.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2014-08-02
| ||
| 16:48:56 | Octave continuation character changed to ellipsis check-in: 293a80c42a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 16:36:14 | Replaced continuation character in lib m files, except PPP and Control check-in: fa2f8429aa user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2014-07-25
| ||
| 21:31:48 | Changed newline escape from backslash to ellipsis in m files check-in: 2e8cbaac42 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/CI_seqn.m
from [827c2f1efc]
to [2217509088].
| ︙ | |||
8 9 10 11 12 13 14 | 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 | - + - + | delim = "__"; N = mtt_check_sigs (outsig,insigs); state_index=3; i_cause = outsig(2); # Extract causality |
| ︙ |
Modified mttroot/mtt/lib/comp/simple/C_eqn.m
from [2af3de08f1]
to [0e1e88a5f1].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 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 40 41 42 43 44 | + + + - + | % structure,eqnfile); % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.3 2003/01/07 10:10:14 gawthrop % %% Uses new version of equation.m - passes component type to cr. % %% % %% Revision 1.2 1997/04/09 13:00:28 peterg % %% *** empty log message *** % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. if nargin<8 eqnfile = 'stdout'; end; % Unicausal version CorI = 1; |
Modified mttroot/mtt/lib/comp/simple/SS_seqn.m
from [b43b9ca4fd]
to [96afb2658a].
| 1 2 3 4 5 6 7 8 | - + |
|
| ︙ |
Modified mttroot/mtt/lib/comp/simple/Sensor_seqn.m
from [4a6bbeb765]
to [60348ae058].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - - + + |
function LHS = Sensor_seqn (attribute,name)
## usage: LHS = Sensor_seqn (attribute,name)
##
## Write the LHS of a sensor equation
if strcmp(attribute,"external")
LHS = sprintf("MTTy_%s", name);
elseif strcmp(attribute,"internal")
LHS = sprintf("MTTy_%s", name);
else
|
Modified mttroot/mtt/lib/comp/simple/Source_seqn.m
from [de06b8124d]
to [7ea4860836].
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - - + + |
function RHS = Source_seqn (attribute,name)
## usage: RHS = Source_seqn (attribute,name)
##
## Write the RHS of a source equation
if strcmp(attribute,"external")
RHS = sprintf("MTTu_%s",name);
elseif strcmp(attribute,"internal")
|
Modified mttroot/mtt/lib/comp/simple/junction_seqn.m
from [3462a7ac23]
to [1675df1f08].
| 1 2 3 4 5 6 7 8 9 10 | - + - + |
|
| ︙ | |||
41 42 43 44 45 46 47 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | - + |
inname="";
inports = [];
out_dir = sign(insigs(inport,1));
for i=1:N
if i!=inport
in_dir = sign(insigs(i,1));
plusminus = sign2name(-in_dir*out_dir);
|