Simulink Check及び、Simulink Fixed Poinのfeature名

2 次查看(过去 30 天)
コンカレントライセンスで稼働しているライセンスをチェックしていますが、Simulink CheckとSimulink Fixed Pointのfeature名は何なのか、わかる方いませんでしょうか?

采纳的回答

Kazuya
Kazuya 2019-1-22
ライセンスに含まれている製品の Feature 名はどのように取得しますか?https://jp.mathworks.com/matlabcentral/answers/223214-feature
に方法が書かれてありました。
productidentifier = com.mathworks.product.util.ProductIdentifier.get('Fixed-Point Designer');
feature = char(productidentifier.getFlexName())
feature =
'Fixed_Point_Toolbox'
productidentifier = com.mathworks.product.util.ProductIdentifier.get('Simulink Check');
feature = char(productidentifier.getFlexName())
feature =
'SL_Verification_Validation'

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simscape 的更多信息

Community Treasure Hunt

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

Start Hunting!