blob: 7f8a5b145b6cc415983bad592782ba804d5e49d2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
This lecture is mostly a review of rate-feedback plots, and advice on how to
plot them in MATLAB.
Lots of nitty-gritty plotting tricks.
Crude zero-finding with min(abs(y1 - y2)), which, for vectors y1, y2, returns a
tuple of (value, index). Later, instead go pairwise along vector of
differences, and add pairs for every crossing.
|