forked from PaulBatchelor/320b_notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20.tex
71 lines (54 loc) · 1.19 KB
/
20.tex
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
59
60
61
62
63
64
65
66
67
68
69
70
71
\begin{itemize}
\item{Class notes: 2-11-16}
\subsection*{Matlab demo}
\item{
zp2tf: zero pole to transfer function, gives us our A and B coefficients.
}
\item{
Frequency vector returned by freqs is useful for plots.
}
\item{
Phase plot: how to convert phase to time delay? Find the slope of the phase (phase delay):
\begin{align*}
-\frac{\theta(\omega)}{\omega}
\end{align*}
}
\item{
Plotting group delay: plot(w(1:end-1), -diff(unwrap(angle(H)))/w)
}
\item{
We have 1400 samples of delay at the corner frequency
}
\item{
There should be a filter designed to be similar to the butterworth filter, so you can
call it "I can't believe it's not butter".
}
\item{
Convert to radians: freq * 2 * pi
}
\subsection*{Julius}
\item{
FDA tool: Filter Desgin and Analysis
}
\item{
Tool only available in MATLAB, not Octave
}
\item{
Able to generate Matlab code.
}
\item{
Maximally flat: for group delay it's called a Bessel Filter. For butterworth it's something else... (phase?)
}
\subsection*{Part 2: more FDA}
\item{
Alternation Thereom
}
\item{
Pi rotate a filter: $-1^{n}$: Negate every other coefficient.
}
\item{
Hipass IR: sample sync function with every other sample negated
}
\item{
}
\end{itemize}