Skip to content

This modules allows accessing Labview TDM/TDX files to be accesed like numpy structured arrays.

License

Notifications You must be signed in to change notification settings

morbult/tdm_loader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This module allows National Instruments TDM/TDX files to be accessed like NumPy structured arrays.

It can be installed in the standard way::

python setup.py install

Sample usage::

import tdm_loader
data_file = tdm_loader.OpenFile('filename.tdm')

Access a column by number::

data_file[column_num]

Access a column by number::

data_file.col(column_num)

Access a channel by channel group and channel index combination::

data_file.channel(channel_group, channel)

Search for a column name. A list of all column names that contain search_term and their indices will be returned::

data_file.channel_search(search_term)

About

This modules allows accessing Labview TDM/TDX files to be accesed like numpy structured arrays.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%