我使用npTDMS包(http://nptdms.readthedocs.org/en/latest/)讀取.TDMS文件。 的問題是,我想與語法獲得通道數據:使用nptdms獲取頻道名稱
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'>]
的question7problem是:我怎麼可以從上面的輸出只得到
name_of_the_channel
?