"Attempt to reference field of non-structure array" error when using Makemid Command

1 回表示 (過去 30 日間)
I am trying to use makemid for creating MATLAB instrument driver for my Rohde and Schwarz Signal Analyzer. I have installed the IVI driver for the same. It gives me the following error "Attempt to reference field of non-structure array" error!. I am unable to understand what causes this error.
the syntax for using makemid command is makemid('Driver name','file name')

採用された回答

Luuk van Oosten
Luuk van Oosten 2016 年 9 月 19 日
I'm not really sure, because your question does not give much specific information about your situation (such as the actual name of the driver, that would be nice to have). My best guess: you are trying to access some kind of driver file using this thing you provided:
makemid('Drivername','filename')
And the following is the case:
It could be that in your 'filename' you have for example the full path of your file as follows:
'C:/whatever/your/folder/is/where/that/driver/is/located/yourfilename.mdd'
If your file is not a file with the extention .mdd, but for example a .txt file, this could give erros if you do not specify the file extention in the filed 'type'. Another possibility is that the name of your file 'yourfilename' accidentally contains a dot (i.e.: 'your.filename.mdd'). That might cause MATLAB to read it as a struct (while it is not) and therefore throws you an error.
  3 件のコメント
Luuk van Oosten
Luuk van Oosten 2016 年 9 月 19 日
It should not really matter, if you would do the following:
makemid('RsFs');
It makes the driver in the current working directory.
If you would do the following:
makemid('RsFs','C:/etc/etc/RsFs.mdd)
The driver 'RsFs' driver should be put into that folder.
Maybe have another look at the makemid documentation.
Manigandan
Manigandan 2016 年 9 月 19 日
The above is a screenshot of my matlab command window Luuk. If you notice i followed the steps and it still throws me the error. May be something which i didnt see in this. I have read the weblink that you sent earlier as well, but i am not able to figure this out. Your help is much appreciated.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInstrument Driver Editing and Testing についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by