m-thesis-introduction/README.md

18 lines
457 B
Markdown
Raw Permalink Normal View History

2021-11-23 13:46:41 +01:00
# Master Thesis Introduction
2022-03-11 16:41:11 +01:00
Introductory work for my Master's Internship at HEP, organised in Jupyter Notebooks and/or python scripts.
Topics:
* [Fourier Transforms](./fourier)
* [Antenna Simulations](./simulations)
2022-06-27 16:23:19 +02:00
[`lib`](./lib) contains a library.
\
Notebooks can pick it up by using
```python
import os
import sys
# Append parent directory to import path so refcurve can be found
sys.path.append(os.path.dirname(os.path.abspath(os.getcwd())))
```