Skip to content
Snippets Groups Projects
Verified Commit 6c07b2a0 authored by Christian Rohlfing's avatar Christian Rohlfing
Browse files

Init

parents
No related branches found
No related tags found
No related merge requests found
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Jupyter
.ipynb_checkpoints
[submodule "A"]
path = A
url = ../gdet3-demos.git
[submodule "B"]
path = B
url = ../iue-demos.git
Subproject commit fe0f5f3396eb3e99cec40a392ec0b6a245da9b8b
Subproject commit 5b9eb24d15f0d3673b4c514195d1fa94472e1be3
LICENSE 0 → 100644
MIT License
Copyright (c) 2020 Institut für Nachrichtentechnik, RWTH Aachen University
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
<img align="right" src="https://git.rwth-aachen.de/IENT/ient.nb/raw/master/figures/rwth_ient_logo@2x.png" alt="Logo Institut für Nachrichtentechnik | RWTH Aachen University" width="240px">
# Signalübertragung Demos
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgit.rwth-aachen.de%2FIENT%2Fsignaluebertragung-demos/master?urlpath=lab/tree/index.ipynb)
## Introduction
This repository contains demos for selected topics of the book "Signalübertragung", by Jens-Rainer Ohm (chair of [Institut für Nachrichtentechnik](http://www.ient.rwth-aachen.de)) at [RWTH Aachen University](http://www.rwth-aachen.de) and Hans Dieter Lüke (former chair).
Visit the notebook [index.ipynb](index.ipynb) for a table of contents.
## Quick Start
Run the notebooks directly online [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgit.rwth-aachen.de%2FIENT%2Fsignaluebertragung-demos/master?urlpath=lab/tree/index.ipynb). Please note the following limitations:
* The starting process of the session may take up to one minute.
* Please note that the session will be cancelled after 10 minutes of user inactivity.
## Usage
To be able to open the demos locally, you need to have a Python environment as well as JupyterLab installed. We recommend to use Anaconda for a local installation.
### Anaconda
To run the notebooks on your local machine, you may use [Anaconda](https://www.anaconda.com/) (using `pip` is also possible for experienced users. You have to install all the requirements listed in `binder/environment.yml` and install the two `jupyter labextension ...` commands listed in `binder/postBuild`).
#### Installation
* Install [Anaconda](https://www.anaconda.com/).
* Download this repository to your local disk. You can download via `git clone --recurse-submodules git@git.rwth-aachen.de:IENT/signaluebertragung-demos.git`.
* It is highly recommended to run the notebooks in an isolated Anaconda environment. You can create a new environment called `suelab` from the provided `binder/environment.yml` by running `conda env create -f binder/environment.yml` in the Anaconda prompt. This makes sure that all required packages are installed amd don't interfere with the packages in your base environment.
* Activate this environment with `conda activate suelab`.
* Run two final commands in the Anaconda prompt (with activated `suelab` environment):
```bash
chmod +x binder/postBuild
binder/postBuild
```
If the latter command fails, please open `binder/postBuild` and execute the commands listed there manually.
#### Run
* Activate the environment with `conda activate suelab`.
* Run JupyterLab `jupyter lab`. In your browser, JupyterLab should start. You can then open `index.ipynb` for an overview over all notebooks.
* You can deactivate the environment with `conda deactivate` (and switch back to it with `conda activate suelab`).
## Contact
* If you found a bug, please use the [issue tracker](https://git.rwth-aachen.de/IENT/signaluebertragung-demos/issues).
* In all other cases, please contact [Christian Rohlfing](http://www.ient.rwth-aachen.de/cms/c_rohlfing/).
The code is licensed under the [MIT license](https://opensource.org/licenses/MIT).
\ No newline at end of file
name: suelab
channels:
- conda-forge
dependencies:
- numpy==1.21.2
- scipy==1.7.1
- matplotlib-base==3.4.3
- jupyterlab==3.1.6
- nodejs==14.17.4
- ipympl==0.7.0
jupyter labextension install @jupyter-widgets/jupyterlab-manager
pip install git+https://git.rwth-aachen.de/jupyter/rwth-nb.git@v0.1.7
%% Cell type:markdown id:1d190473-8023-433b-955c-caf4d70c13d2 tags:
<div>
<img src="A/figures/rwth_ient_logo@2x.png" style="float: right;height: 5em;">
</div>
# Signalübertragung
Interaktive Demos zu ausgewählten Themen des Lehrbuchs [Signalübertragung](http://dx.doi.org/10.1007/978-3-642-53901-5) von Jens-Rainer Ohm und Hans Dieter Lüke.
## Jupyter Quick Start
* Zum Ausführen aller Cells eines Notebooks: Im Menü: Run <span class="fa-chevron-right fa"></span> Run All Cells (oder <span class="fa-forward fa"></span>-Button)
* Zum Neustart: <span class="fa-refresh fa"></span>-Button
* Zum Ausführen einer einzelnen Cell: <span class="fa-play fa"></span>-Button
## Inhaltsverzeichnis
%% Cell type:markdown id:7573e047-880f-4e81-93b1-dc77cab13de4 tags:
### Teil A: Signale und Systeme
1. Determinierte Signale in linearen zeitinvarianten Systemen
* [Elementarsignale](A/GDET3%20Elementarsignale.ipynb) (Elementarsignale sowie Zeitverschiebung, -spiegelung, -dehnung)
* [Demo Zeitverschiebung, -spiegelung, -dehnung](A/GDET3%20Zeitverschiebung-Dehnung%20GUI.ipynb)
* [Beispiel zur Berechnung des Faltungsintegrals](A/GDET3%20Faltungsbeispiel.ipynb)
* [Demo Faltungsintegral](A/GDET3%20Faltung%20GUI.ipynb)
2. Laplace-Transformation
* [Beispiele Laplace-Transformation](A/GDET3%20Laplace-Transformation.ipynb)
* [Demo Laplace-Transformation](A/GDET3%20Laplace-Transformation%20GUI.ipynb)
* [RLC System](A/GDET3%20RLC-System.ipynb)
3. Fourier-Beschreibung von Signalen und Systemen
* [RL-Hochpass](A/GDET3%20RL-Hochpass.ipynb)
* [Fourier-Reihe](A/GDET3%20Fourier-Reihenkoeffizienten.ipynb)
* [Demo Fourier-Transformation](A/GDET3%20Fourier-Transformation.ipynb)
* [Demo Übertragungsfunktion](A/GDET3%20Übertragungsfunktion.ipynb)
4. Diskrete Signale und Systeme
* [Ideale Abtastung](A/GDET3%20Ideale%20Abtastung.ipynb)
* [Reale Abtastung](A/GDET3%20Reale%20Abtastung.ipynb)
* [Demo Diskretes Faltungsintegral](A/GDET3%20Diskrete%20Faltung%20GUI.ipynb)
* [Diskrete Fourier-Transformation](A/GDET3%20Diskrete%20Fourier-Transformation.ipynb)
* [Demo $z$-Transformation](A/GDET3%20z-Transformation%20GUI.ipynb)
5. Systemtheorie der Tiefpass- und Bandpasssysteme
* [Äquivalenter Tiefpass](A/GDET3%20Äquivalenter%20Tiefpass.ipynb)
6. Korrelationsfunktionen determinierter Signale
* [Demo Auto- und Kreuzkorrelationsfunktion](A/GDET3%20Autokorrelationsfunktion.ipynb)
* [Demo Korrelationsempfänger](A/GDET3%20Korrelationsempfänger.ipynb)
7. Statistische Signalbeschreibung
* [Verteilungs- und Verteilungsdichtefunktion](A/GDET3%20Verteilungsfunktion.ipynb)
* [Demo Verteilungs- und Verteilungsdichtefunktion](A/GDET3%20Verteilungsfunktion%20GUI.ipynb)
* [Weißes Rauschen](A/GDET3%20Weißes%20Rauschen.ipynb)
* [Zufallssignale in LTI-Systemen](A/GDET3%20Zufallssignale%20in%20LTI-Systemen.ipynb)
%% Cell type:markdown id:8b2fadcf-aca9-441c-9d51-cdfeee28e028 tags:
### Teil B: Informationsübertragung
8. Binärübertragung mit Tiefpasssignalen
* [Autokorrelationsfunktion Binäre Rechteckfolge](B/IUE%20Autokorrelationsfunktion%20Binäre%20Rechteckfolge.ipynb)
* [Unipolare Amplitudenabtastung](B/IUE%20Amplitudenabtastung.ipynb)
* [Augendiagramm](B/IUE%20Augendiagramm.ipynb)
* [Fehlerwahrscheinlichkeit](B/IUE%20Fehlerwahrscheinlichkeit.ipynb)
9. Binärübertragung mit Bandpasssignalen
* [Rayleigh-Verteilung](B/IUE%20Rayleigh-Verteilung.ipynb)
10. Analoge Modulationsverfahren
* [Pulsamplitudenmodulation](B/IUE%20Pulsamplitudenmodulation.ipynb)
11. Multiplexverfahren
12. Codierung
* [Quantisierung](B/IUE%20Quantisierung.ipynb)
* [Entropie Ternäre Quelle](B/IUE%20Entropie%20Ternäre%20Quelle.ipynb)
13. Grenzen der Informationsübertragung
Zusätzlich steht ein [Primer](GDET3%20Primer%20Komplexe%20Zahlen.ipynb) zu komplexen Zahlen zur Verfügung.
%% Cell type:markdown id:4727e1ce-973e-480a-974c-c1d87ef5c77d tags:
## Mitwirkende
* [Christian Rohlfing](http://www.ient.rwth-aachen.de/cms/c_rohlfing/)
* [Iris Heisterklaus](http://www.ient.rwth-aachen.de/cms/i_heisterklaus/)
* Emin Kosar
* [Jens Schneider](http://www.ient.rwth-aachen.de/cms/j_schneider/)
___
This notebook is provided as [Open Educational Resource](https://en.wikipedia.org/wiki/Open_educational_resources) (OER). Feel free to use the notebook for your own purposes. The code is licensed under the [MIT license](https://opensource.org/licenses/MIT).
Please attribute the work as follows:
*Christian Rohlfing, Demos zum Lehrbuch "Signalübertragung"* von Jens-Rainer Ohm und Hans Dieter Lüke, 2021, [Institut für Nachrichtentechnik](http://www.ient.rwth-aachen.de), RWTH Aachen University.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment