Skip to content

python script for reading isf files from TDS-series tektronix oscilloscopes

License

Notifications You must be signed in to change notification settings

gpasquev/isfread-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python script for read data from a Tektronix ".ISF" files

Python script for ascii-converting binary ISF files from TDS series Tektronix Oscilloscope instruments.

Short usage example (for Python2x)

In linux command line (convert .isf to .dat)::

$ python isfread.py file.isf > ascii.dat 

As the python module::

$ python 
>>> from isfread import isfread
>>> data, header = isfread('file.isf')
>>> 

Short usage example (for Python3x)

In linux command line (convert .isf to .csv)::

$ python isfread_py3.py file.isf -o ascii.csv 

As the python module::

$ python 
>>> from isfread_py3 import isfread
>>> data, header = isfread('file.isf')
>>> 

Author

Gustavo Pasquevich - 2011 UNLP-CONICET-Argentina

keywords: ISF, TekTronix, isfread, python

Acknowledgment

Based on matab script isfread.m by Jhon Lipp.

About

python script for reading isf files from TDS-series tektronix oscilloscopes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages