Simulink Check及び、Simulink Fixed Poinのfeature名

조회 수: 2 (최근 30일)
Kazu Ari
Kazu Ari 2019년 1월 21일
답변: Kazuya 2019년 1월 22일
コンカレントライセンスで稼働しているライセンスをチェックしていますが、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!