Mercurial > hg > ishara
view arrows/@arrow/mtimes.m @ 2:7357e1dc2ad6
Simplified scheduler library with new schedule representation.
author | samer |
---|---|
date | Sat, 22 Dec 2012 16:17:51 +0000 |
parents | 672052bd81f8 |
children |
line wrap: on
line source
% mtimes - Serial connection of arrows % % Operator form of aconnect. See aconnect for details. % The following are all equivalent: % >> aconnect(a1,aconnect(a2,a2)). % >> a1 * a2 * a3 function o=mtimes(o1,o2), o=aconnect(o1,o2); end