Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ad65ad54f7e91fa0708b24cea78f2705 |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-01 12:18:38 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-01
| ||
12:34:45 | Added browser - mtt_help check-in: dc8e8a04af user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:18:38 | Initial revision check-in: ad65ad54f7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:05:54 | Initial revision check-in: 04af806d55 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/comp/simple/SS_cause.m version [1fe2266b8b].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | function [bonds,status] = SS_cause(bonds) % SS_cause = causality for an SS component % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function SS_cause % [bonds,status] = SS_cause(bonds) %SUMMARY SS: source-sensor component %DESCRIPTION one-port source sensor component %DESCRIPTION when the name is [i], acts as ith port of a system. %DESCRIPTION may be bicausal % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. if (bonds(1)==0)|(bonds(2)==0) % Under causal status = -1; else % causal status = 0; end; |