aboutsummaryrefslogtreecommitdiffstats
path: root/tex/filters.tex
blob: e785e0ad4bb05df2b90f415a961286abe48f7279 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
\section{Filters}

\begin{figure}
  \centering
  \begin{tikzpicture}[
      axis tick/.style = {
        inner sep = 1mm,
        outer sep = 1mm,
      },
      x axis tick/.style = {
        axis tick,
        path picture = {
          \draw[thick, -]
            ($(path picture bounding box) + (0,.1)$) --
            ($(path picture bounding box) - (0,.1)$);
        }
      },
      y axis tick/.style = {
        axis tick,
        path picture = {
          \draw[thick, -]
            ($(path picture bounding box) + (.1,0)$) --
            ($(path picture bounding box) - (.1,0)$);
        }
      }
    ]

    \pgfmathsetmacro\xlen{5}
    \pgfmathsetmacro\ylen{3}

    \coordinate (O) at (0,0);
    \draw[thick, ->] (O) to
      % node[pos = .5, x axis tick, label = -90:1] {}
      node[pos = .4, x axis tick, label = -90:\(\Omega_D\)] (OmegaD) {}
      node[pos = .65, x axis tick, label = -90:\(\Omega_S\)] (OmegaS) {}
      ++(\xlen,0) node[right] {\(\Omega\)};

    \draw[thick, ->] (O) to
      node[pos = .2, y axis tick, label = 180:\(A_\text{max}\)] (Amax) {}
      node[pos = .7, y axis tick, label = 180:\(A_\text{min}\)] (Amin) {}
      ++(0,\ylen) node[above] {\(A\)};

    \draw[dashed, lightgray]
      (Amin) -- ++(\xlen,0)
      (Amax) -- ++(\xlen,0)
      (OmegaD) -- ++(0,\ylen)
      (OmegaS) -- ++(0,\ylen);

    \draw[very thick, red!80!black] (Amax) -| ($(OmegaD) +(0,3)$);
    \draw[very thick, red!80!black] (OmegaS) -- (Amin -| OmegaS) -- ++(1.5,0);

    \node[align = center] at (1,1.3) {Stamp \\ (passband)};
    \node[align = center] at (4.3,1.3) {Mold \\ (stopband)};

  \end{tikzpicture}
\end{figure}

% vim:ts=2 sw=2 et: