Go to file
RD 2d0adf1038 master > master: updated comments and user input 2022-10-12 12:20:58 +02:00
docs master > master: updated comments and user input 2022-10-12 12:20:58 +02:00
src master > master: updated comments and user input 2022-10-12 12:20:58 +02:00
.gitignore main > main: init 2022-10-08 09:51:18 +02:00
LICENSE main > main: init 2022-10-08 09:51:18 +02:00
README.md main > main: README - added usage instructions 2022-10-11 16:45:39 +02:00
justfile main > main: justfile - include clean output 2022-10-08 10:56:44 +02:00
requirements.txt main > main: requirements - tabulate 2022-10-08 10:02:18 +02:00

README.md

Notebooks

This repository is for presenting supplementary material to research papers.

Scope

  • All scripts have been written by the owner of this repository for research conducted by the owner.
  • The code in this repository is not intended to be part of research submissions, but rather exclusively for presentation purposes.

Presentations

See the docs/*.ipynb files.

Paper/Research Notebook
Dilations of commuting C\_{0}-semigroups with bounded generators and the von Neumann polynomial inequality examples_dilations.ipynb

Note: The Git provider Gitea does not have a display format for ipynb-files. To properly view and run the notebooks, users require python v3.10.x and the jupyter module. To install the package requirements, call just build or python3 -m pip install -r requirements.txt.#

Usage

To run the presentations:

  • Ensure you have a working copy of python 3.10.x on your system with rights to install packages.
  • Clone the repository.
  • Install the requirements. Navigate to the root of the repository and carry out:
    python3 -m pip install --disable-pip-version-check -r requirements.txt
    # for Windows users:
    py -3 -m pip install --disable-pip-version-check -r requirements.txt
    
  • Start the desired notebooks using the jupyter UI or run
    python3 -m jupyter notebook notebooks/xyz.ipynb
    # for Windows users:
    py -3 -m jupyter notebook notebooks/xyz.ipynb
    
    to run the notebook docs/xyz.ipynb.

Alternatively we recommend the following:

  • Ensure you have a working copy of python 3.10.x on your system with rights to install packages.
  • Ensure you have bash (for Windows users see the Git SCM) and the justfile tool (Windows users may wish to install Chocolatey beforehand).
  • Clone the repository.
  • Navigate in a bash terminal to the root of the repository and make use of the following commands:
    # for setup:
    just build
    # to run the notebook docs/xyz.ipynb:
    just run xyz
    
    (ensure that the extension is no included in the command!).