├── .github └── workflows │ ├── main.yml │ ├── python-publish.yml │ └── sphinx_render_docs.yml ├── .gitignore ├── .pylintrc ├── .pyspelling.yml ├── CHANGELOG.md ├── README.rst ├── docs ├── Makefile ├── make.bat ├── source │ ├── conf.py │ ├── figures │ │ ├── function_overview.png │ │ ├── function_overview.svg │ │ ├── impedance_function_overview.png │ │ ├── impedance_function_overview.svg │ │ ├── introduction.png │ │ └── introduction.svg │ ├── index.rst │ └── intro.rst └── wordlist ├── examples ├── impedance_example.py ├── impedance_example_data1mm5.csv ├── impedance_example_data_0mm5.csv ├── scope_example.py ├── scope_example_data_gecko ├── scope_example_data_lecroy_1.csv ├── scope_example_data_lecroy_2.csv ├── scope_example_data_lecroy_3.csv └── scope_example_data_tek.csv ├── pyproject.toml ├── pysignalscope ├── __init__.py ├── channelshift.py ├── colors.py ├── functions.py ├── generalplotsettings.py ├── impedance.py ├── impedance_dataclass.py ├── logconfig.py ├── scope.py └── scope_dataclass.py ├── tests ├── test_impedance.py └── test_scope.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx_render_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/.github/workflows/sphinx_render_docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pyspelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/.pyspelling.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/figures/function_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/figures/function_overview.png -------------------------------------------------------------------------------- /docs/source/figures/function_overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/figures/function_overview.svg -------------------------------------------------------------------------------- /docs/source/figures/impedance_function_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/figures/impedance_function_overview.png -------------------------------------------------------------------------------- /docs/source/figures/impedance_function_overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/figures/impedance_function_overview.svg -------------------------------------------------------------------------------- /docs/source/figures/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/figures/introduction.png -------------------------------------------------------------------------------- /docs/source/figures/introduction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/figures/introduction.svg -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/docs/wordlist -------------------------------------------------------------------------------- /examples/impedance_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/impedance_example.py -------------------------------------------------------------------------------- /examples/impedance_example_data1mm5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/impedance_example_data1mm5.csv -------------------------------------------------------------------------------- /examples/impedance_example_data_0mm5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/impedance_example_data_0mm5.csv -------------------------------------------------------------------------------- /examples/scope_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/scope_example.py -------------------------------------------------------------------------------- /examples/scope_example_data_gecko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/scope_example_data_gecko -------------------------------------------------------------------------------- /examples/scope_example_data_lecroy_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/scope_example_data_lecroy_1.csv -------------------------------------------------------------------------------- /examples/scope_example_data_lecroy_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/scope_example_data_lecroy_2.csv -------------------------------------------------------------------------------- /examples/scope_example_data_lecroy_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/scope_example_data_lecroy_3.csv -------------------------------------------------------------------------------- /examples/scope_example_data_tek.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/examples/scope_example_data_tek.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pysignalscope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/__init__.py -------------------------------------------------------------------------------- /pysignalscope/channelshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/channelshift.py -------------------------------------------------------------------------------- /pysignalscope/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/colors.py -------------------------------------------------------------------------------- /pysignalscope/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/functions.py -------------------------------------------------------------------------------- /pysignalscope/generalplotsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/generalplotsettings.py -------------------------------------------------------------------------------- /pysignalscope/impedance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/impedance.py -------------------------------------------------------------------------------- /pysignalscope/impedance_dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/impedance_dataclass.py -------------------------------------------------------------------------------- /pysignalscope/logconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/logconfig.py -------------------------------------------------------------------------------- /pysignalscope/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/scope.py -------------------------------------------------------------------------------- /pysignalscope/scope_dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/pysignalscope/scope_dataclass.py -------------------------------------------------------------------------------- /tests/test_impedance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/tests/test_impedance.py -------------------------------------------------------------------------------- /tests/test_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/tests/test_scope.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upb-lea/pySignalScope/HEAD/tox.ini --------------------------------------------------------------------------------