Info
此问题已关闭。 请重新打开它进行编辑或回答。
Acquiring adaptor supplied when creating a gpib object.
1 次查看(过去 30 天)
显示 更早的评论
Hello I would like to get the adaptor type for an established gpib object. Something along the lines of comHandle = gpib('ni',0,18) assert(isvalid(comHandle),'this is not a valid comHandle') adaptor = comHandle.adaptor; %should be 'ni'
Searching through the literature there does not seem to be an easy way to acquire this information. Any help would be appreciated. Thanks.
0 个评论
回答(1 个)
Amit Doshi
2017-7-18
编辑:Amit Doshi
2017-7-18
Hello Christopher,
Refer the below code example to get the adaptor name:
>> g1 = gpib('ni',0,1);
>> a = g1.instrhwinfo;
>> adaptor = a.AdaptorName
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!