Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# SPDX-FileCopyrightText: 2020 Jonathan Pieper <jpieper@stud.uni-frankfurt.de> 

2# 

3# SPDX-License-Identifier: GPL-3.0-or-later 

4 

5"""Analyses simple Measurements and provides easy plotting.""" 

6 

7__author__ = "Jonathan Pieper" 

8__version__ = '0.2.6' 

9__license__ = 'GNU GPLv3' 

10 

11# Single Measurements 

12from .single import SingleM 

13from .hloop import Hloop 

14from .signalanalyzer import SA 

15from .raw import RAW 

16 

17# Multiple Measurements 

18from .multiple import MultipleM 

19from .handle import HandleM 

20from .mfn import MFN 

21 

22from .plotting import PlottingClass 

23from .plot import Plot