diff options
| author | Yuval Adam <_@yuv.al> | 2018-05-24 15:57:10 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-05-24 15:57:10 +0300 |
| commit | 02fd57fbf3c106c634d30c42829e4e78192cd996 (patch) | |
| tree | 03eee96d4606ff72501fdbfc19f685be07b6f458 | |
| parent | 037f0c38e70dc795945cb405a1c0bc3b38971ffc (diff) | |
Updates
| -rw-r--r-- | talk.ipynb | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -273,7 +273,8 @@ }, "outputs": [], "source": [ - "# Apply the demodulation, we use a polar discriminator\n", + "# Apply the Frequency DEmodulation\n", + "# We use something called polar discriminator\n", "\n", "samples = np.angle(samples[1:] * np.conj(samples[:-1]))" ] @@ -288,7 +289,9 @@ }, "outputs": [], "source": [ - "# De-emphasis filter - too \"sciency\"\n", + "# De-emphasis filter\n", + "# Even I'm not sure how/why this works\n", + "\n", "# MAKE THINGS SOUND BETTER\n", "\n", "d = BANDWIDTH * 75e-6\n", @@ -343,6 +346,7 @@ "\n", " - Python, NumPy and SciPy are **very** good at doing fast processing of static data\n", " - When handling real-time data, buffering becomes a serious issue\n", + " - How do you synchronize different input/ouput sample rates on the same flow?\n", " - GNU Radio\n", " - top-notch signal processing framework\n", " - implemented many DSP primivites\n", |
