フィルターのクリア

Facing issue to create enum type

11 ビュー (過去 30 日間)
Sreenivasulu Ozili
Sreenivasulu Ozili 2013 年 2 月 26 日
コメント済み: Jordan McBain 2020 年 12 月 1 日
Hello,
I am trying to create enum data type. and below is the my smaple code.
classdef OstMode_test < Simulink.IntEnumType
enumeration
Disabled(1)
PredOst(2)
OST(3)
Both(4)
end
methods (Static)
function retVal = getDefaultValue()
retVal = OstMode_test.Both;
end
end
If I run same file on command window I am getting below error.
Error using OstMode_test
Cannot call the constructor of 'OstMode_test' outside of its enumeration block.
Can any body please help me out.
Thanks
Sreenivasulu O

回答 (3 件)

Nour Salama
Nour Salama 2020 年 10 月 8 日
You're declaring the enum properly.
The problem is when using it, you should declare the datatype as Enum: OstMode_test and not OstMode_test directly.
  1 件のコメント
Jordan McBain
Jordan McBain 2020 年 12 月 1 日
Thank you for providing this answer. It is definitely the solution.

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


Abe
Abe 2014 年 8 月 11 日
Did you figure this out?

Zhenwei Sun
Zhenwei Sun 2018 年 9 月 11 日
編集済み: Walter Roberson 2018 年 9 月 11 日
in fact what you need do is put the class define file(xxx.m) in in project folder, without run it.
the simulink will automatic match the def.
hope this helps you.

カテゴリ

Help Center および File ExchangeCOM Component Integration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by