我使用 npTDMS 包 ( http://nptdms.readthedocs.org/en/latest/ ) 来读取 .TDMS 文件。问题是我想使用以下语法获取频道数据:
from nptdms import TdmsFile
tdms_file = TdmsFile("path_to_file.tdms")
channel = tdms_file.object('Group', 'Channel1')
据我了解,我还可以通过以下方式获取数据:
TdmsFile.channel_data('Group', 'Channel1')
我可以通过以下方式获得“Chanel1”:
TdmsFile.group_channels(group)
但这会返回:
[<TdmsObject with path /'name_of_the_group'/'name_of_the_channel'>]
问题7问题是:我怎样才能得到只有
频道名称
从上面的输出?