forked from MarkGotham/Data_Compression
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_workspace.py
More file actions
40 lines (26 loc) · 1.08 KB
/
_workspace.py
File metadata and controls
40 lines (26 loc) · 1.08 KB
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
# -*- coding: utf-8 -*-
"""
Reference:
- Reference implementations are provided in this repo.
- Below is demonstration of the import structure for accessing these for the topics in session 1.
- Others follow a similar pattern, and the relevant import line for each is as provided in the lecture notes.
How to use?
- Try the task yourself, and then import the reference to compare notes.
- If you're struggling, try to formulate the problem clearly, and find the relevant line in the source.
"""
# ------------------------------------------------------------------------
# Imports
# 1: Sound
from implementations import wavelen_vel_freq, tonotopic
# 1: Sight
from implementations import rgb_data, rgb_theory
# ------------------------------------------------------------------------
# Reference
# 1: Sound
# wavelen_vel_freq.plot_wavelength()
# tonotopic.plot_tonotopic()
# wavelen_vel_freq.plot_wavelength(reference_lines=True)
# 1: Sight
# rgb_theory.plot_responsivity(reference_lines=True)
# rgb_data.plot_rgb_csv()
# ------------------------------------------------------------------------