summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/interconnection.tex
blob: 1bc3072d70d3744fb31bdf838a67333e8d4f01f3 (plain)
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
% Example for an interconnection of signal flow diagrams.
%
% Author: Dr. Karlheinz Ochs, Ruhr-University of Bochum, Germany
% Version: 0.1
% Date: 2007/01/05
\documentclass{article}
\usepackage{signalflowdiagram}
\usepackage{macros}

\begin{document}

% interconnection of an MSK symbol encoder with a pulse shaper
\begin{signalflow}{Minimum shift keying modulator}%
   \node[input]  (in)                      {$x(t)$};
   \mskCoder     {mC}  {right from=in}     {};
   \pulseShaper  {pS}  {right from=mC-out} {};
   \node[output] (out) [right from=pS-out] {$z(t)$};
   % signal paths
   \path[c>] (in)     -- (mC-in);
   \path[c>] (mC-out) -- (pS-in);
   \path[c>] (pS-out) -- (out);
   \textaboveof{mC-out}{$y(t)$}
\end{signalflow}

\end{document}