What does "Reference to non-existent field 'minfoFileRevision' " mean and how do I solve the problem?

1 回表示 (過去 30 日間)
Erol
Erol 2013 年 11 月 1 日
回答済み: Doug Hull 2013 年 11 月 1 日
Hi,
I am trying to make a real time workshop build of a simulink model and get the above error.
I am running Matlab 2010b SP2, simulink model was developed on 2009b SP1.
Greatful for any help.
Thanks
//Erik

回答 (1 件)

Doug Hull
Doug Hull 2013 年 11 月 1 日
Something, somewhere, is trying to refer to a field of a structure that does not exist. Here is a simple way to get that error. It is not clear without your code how this is being triggered.
>> clear
>> structure.field = 1
structure =
field: 1
>> structure.nonExistant
Reference to non-existent field 'nonExistant'.
>> structure.field
ans =
1

カテゴリ

Help Center および File ExchangeSimulink Environment Customization についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by